Skip to content

Commit ba0b054

Browse files
committed
Initial
1 parent be88385 commit ba0b054

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

create-package.cmd

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ SET PATH=%PATH%;C:\Program Files\WinRAR;C:\Program Files (x86)\WinRAR
55
IF EXIST "bin" (
66
ECHO Creating package ...
77
XCOPY /Y /E preferences\* bin\preferences\
8+
XCOPY /Y /E plugins\* bin\plugins\
89
WinRAR a -afzip -r "bin.zip" "bin"
910
ECHO Finished
1011
) ELSE (

create-package.sh

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ if [ -d "bin" ]
44
then
55
echo "Creating package ..."
66
cp -a preferences/. bin/preferences/
7+
cp -a plugins/. bin/plugins/
78
tar -czvf bin.tar.gz bin/
89
echo "Finished"
910
else

0 commit comments

Comments
 (0)