mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-23 08:09:51 +00:00
a1a325e8ad
Removed copy unexists dir (flash0 moved to assets).
14 lines
249 B
Bash
14 lines
249 B
Bash
TARGETDIR=$1
|
|
VERSION=$2
|
|
|
|
TARGETPATH=$1/$2
|
|
|
|
echo "Copying to $TARGETPATH"
|
|
|
|
mkdir -p $TARGETPATH
|
|
cp PPSSPPWindows.exe $TARGETPATH/
|
|
cp PPSSPPWindows64.exe $TARGETPATH/
|
|
cp -r assets $TARGETPATH/
|
|
cp README.md $TARGETPATH/
|
|
rm $TARGETPATH/assets/lang/.git
|