mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
Fixed archive scripts.
This commit is contained in:
parent
44eb698862
commit
8b53bd4fdd
6
.gitignore
vendored
6
.gitignore
vendored
@ -12,10 +12,12 @@
|
||||
**/*.deb
|
||||
**/*.aps
|
||||
**/.DS_Store
|
||||
**/obj32
|
||||
**/obj64
|
||||
.vs
|
||||
.vscode
|
||||
bin
|
||||
obj
|
||||
bin32
|
||||
bin64
|
||||
ipch
|
||||
build
|
||||
CPack*
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin32/sh
|
||||
#!/bin/sh
|
||||
|
||||
VERSION=$1
|
||||
|
||||
|
@ -1,17 +1,15 @@
|
||||
#!/bin64/sh
|
||||
#!/bin/sh
|
||||
|
||||
VERSION=$1
|
||||
|
||||
if [ -z "$VERSION" ]; then
|
||||
echo "usage: ./archive-win32.sh <version>"
|
||||
echo "usage: ./archive-win64.sh <version>"
|
||||
exit
|
||||
fi
|
||||
|
||||
VANILLA="bin64/dist/musikcube_win32_$VERSION"
|
||||
MILKDROP="bin64/dist/musikcube_win32_with_milkdrop2_$VERSION"
|
||||
VANILLA="bin64/dist/musikcube_win64_$VERSION"
|
||||
|
||||
rm -rf "$VANILLA"
|
||||
rm -rf "$MILKDROP"
|
||||
|
||||
mkdir -p "$VANILLA/plugins"
|
||||
mkdir -p "$VANILLA/themes"
|
||||
@ -23,24 +21,7 @@ cp bin64/release/plugins/*.dll "$VANILLA/plugins"
|
||||
cp bin64/release/themes/*.json "$VANILLA/themes"
|
||||
cp bin64/release/locales/*.json "$VANILLA/locales"
|
||||
cp bin64/release/fonts/*.ttf "$VANILLA/fonts"
|
||||
rm "$VANILLA/plugins/vis_milk2.dll"
|
||||
pushd $VANILLA
|
||||
7z a -tzip "musikcube_win32_$VERSION.zip" ./* -mx=9
|
||||
mv "musikcube_win32_$VERSION.zip" ..
|
||||
popd
|
||||
|
||||
mkdir -p "$MILKDROP/plugins"
|
||||
mkdir -p "$MILKDROP/themes"
|
||||
mkdir -p "$MILKDROP/locales"
|
||||
mkdir -p "$MILKDROP/fonts"
|
||||
cp bin64/release/musikcube.exe "$MILKDROP"
|
||||
cp bin64/release/*.dll "$MILKDROP"
|
||||
cp bin64/release/plugins/*.dll "$MILKDROP/plugins"
|
||||
cp bin64/release/themes/*.json "$MILKDROP/themes"
|
||||
cp bin64/release/locales/*.json "$MILKDROP/locales"
|
||||
cp bin64/release/fonts/*.ttf "$MILKDROP/fonts"
|
||||
cp -rfp bin64/release/plugins/Milkdrop2 "$MILKDROP/plugins"
|
||||
pushd $MILKDROP
|
||||
7z a -tzip "musikcube_win32_with_milkdrop2_$VERSION.zip" ./* -mx=9
|
||||
mv "musikcube_win32_with_milkdrop2_$VERSION.zip" ..
|
||||
7z a -tzip "musikcube_win64_$VERSION.zip" ./* -mx=9
|
||||
mv "musikcube_win64_$VERSION.zip" ..
|
||||
popd
|
||||
|
Loading…
Reference in New Issue
Block a user