diff --git a/package.sh b/package.sh new file mode 100644 index 00000000..53d58e74 --- /dev/null +++ b/package.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# +# Bash script for the creation of the easyappointments.zip +# + +clear + +rm -f easyappointments.zip +rm -rf .tmp-package/** + +mkdir .tmp-package +cp -rf src/** .tmp-package +rm -f .tmp-package/config.php +mv -f .tmp-package/config-sample.php .tmp-package/config.php +cp CHANGELOG.md .tmp-package/CHANGELOG +cp LICENSE .tmp-package/LICENSE + +cd .tmp-package +zip -r ../easyappointments.zip ./* +cd .. +rm -rf .tmp-package \ No newline at end of file diff --git a/rsc/package.sh b/rsc/package.sh deleted file mode 100644 index 579e4c7f..00000000 --- a/rsc/package.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!bin/bash - - -# Create Build Directory - - -# Minify and Concatenate Assets Code - - -# Zip Folder \ No newline at end of file