We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be88385 commit ba0b054Copy full SHA for ba0b054
create-package.cmd
@@ -5,6 +5,7 @@ SET PATH=%PATH%;C:\Program Files\WinRAR;C:\Program Files (x86)\WinRAR
5
IF EXIST "bin" (
6
ECHO Creating package ...
7
XCOPY /Y /E preferences\* bin\preferences\
8
+ XCOPY /Y /E plugins\* bin\plugins\
9
WinRAR a -afzip -r "bin.zip" "bin"
10
ECHO Finished
11
) ELSE (
create-package.sh
@@ -4,6 +4,7 @@ if [ -d "bin" ]
4
then
echo "Creating package ..."
cp -a preferences/. bin/preferences/
+ cp -a plugins/. bin/plugins/
tar -czvf bin.tar.gz bin/
echo "Finished"
else
0 commit comments