CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/copyrelease.sh
Views: 1400
1
TARGETDIR=$1
2
VERSION=$2
3
4
TARGETPATH=$1/$2
5
6
echo "Copying to $TARGETPATH"
7
8
mkdir -p $TARGETPATH
9
cp PPSSPPWindows.exe $TARGETPATH/
10
cp PPSSPPWindows64.exe $TARGETPATH/
11
cp -r assets $TARGETPATH/
12
cp README.md $TARGETPATH/
13
rm $TARGETPATH/assets/lang/.git
14
15