mirror of https://gitlab.com/basile.b/dexed.git
updated script that make the zips
This commit is contained in:
parent
031fa42f31
commit
e9b54be3d9
|
@ -0,0 +1 @@
|
|||
1update2
|
|
@ -1,6 +1,8 @@
|
|||
ver=$(<version.txt)
|
||||
cd nux32
|
||||
zip -9 -j \
|
||||
"output/coedit.1update2.linux32.zip" \
|
||||
nux32/dcd.license.txt nux32/coedit.license.txt \
|
||||
nux32/coedit nux32/cetodo nux32/cesyms \
|
||||
nux32/coedit.ico nux32/coedit.png \
|
||||
nux32/dcd-server nux32/dcd-client
|
||||
../output/coedit.$ver.linux32.zip \
|
||||
dcd.license.txt coedit.license.txt \
|
||||
coedit cetodo cesyms \
|
||||
coedit.ico coedit.png \
|
||||
dcd-server dcd-client
|
|
@ -1,6 +1,8 @@
|
|||
ver=$(<version.txt)
|
||||
cd nux64
|
||||
zip -9 -j \
|
||||
"output/coedit.1update2.linux32.zip" \
|
||||
nux64/dcd.license.txt nux64/coedit.license.txt \
|
||||
nux64/coedit nux64/cetodo nux64/cesyms \
|
||||
nux64/coedit.ico nux64/coedit.png \
|
||||
nux64/dcd-server nux64/dcd-client
|
||||
../output/coedit.$ver.linux64.zip \
|
||||
dcd.license.txt coedit.license.txt \
|
||||
coedit cetodo cesyms \
|
||||
coedit.ico coedit.png \
|
||||
dcd-server dcd-client
|
|
@ -1,7 +1,8 @@
|
|||
set /p ver=<version.txt
|
||||
cd win32
|
||||
:: assuming 7zip binary folder is somewhere in PATH
|
||||
7z a -tzip -mx9^
|
||||
..\output\coedit.1update2.win32.zip^
|
||||
..\output\coedit.%ver%.win32.zip^
|
||||
dcd.license.txt coedit.license.txt^
|
||||
coedit.exe cetodo.exe cesyms.exe^
|
||||
coedit.ico coedit.png^
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
ver=$(<version.txt)
|
||||
cd win32
|
||||
7z a -tzip -mx9 \
|
||||
../output/coedit.$ver.win32.zip \
|
||||
dcd.license.txt coedit.license.txt \
|
||||
coedit.exe cetodo.exe cesyms.exe \
|
||||
coedit.ico coedit.png \
|
||||
dcd-server.exe dcd-client.exe
|
Loading…
Reference in New Issue