1TARGETDIR=$1 2VERSION=$2 3 4TARGETPATH=$1/$2 5 6echo "Copying to $TARGETPATH" 7 8mkdir -p $TARGETPATH 9cp PPSSPPWindows.exe $TARGETPATH/ 10cp PPSSPPWindows64.exe $TARGETPATH/ 11cp -r assets $TARGETPATH/ 12cp README.md $TARGETPATH/ 13rm $TARGETPATH/assets/lang/.git 14 15