1
- #! /bin/bash
1
+ #! /usr/bin/env bash
2
+
3
+ #
4
+ # This script will package the script into a release zip file.
5
+ #
6
+ # It requires the following dependencies: 7z, jq and npm
7
+ #
8
+
9
+
10
+ set -o errexit # abort on nonzero exit status
11
+ set -o nounset # abort on unbound variable
12
+ set -o pipefail # don't hide errors within pipes
13
+
14
+ no_dep_exit_code=3
15
+
16
+ where () {
17
+ local cmd
18
+ cmd=" $( command -v " $1 " ) "
19
+ echo " $cmd "
20
+ }
21
+
22
+ e () {
23
+ >&2 echo " $1 "
24
+ }
25
+
26
+ jq_cmd=" $( where jq) "
27
+ npm_cmd=" $( where npm) "
28
+ sz_cmd=" $( where 7z) "
29
+
30
+ if ! [ -x " ${jq_cmd} " ]; then
31
+ e " required dependency not found: jq not found in the path or not executable"
32
+ exit ${no_dep_exit_code}
33
+ fi
34
+
35
+ if ! [ -x " ${npm_cmd} " ]; then
36
+ e " required dependency not found: npm not found in the path or not executable"
37
+ exit ${no_dep_exit_code}
38
+ fi
39
+
40
+ if ! [ -x " ${sz_cmd} " ]; then
41
+ e " required dependency not found: 7z not found in the path or not executable"
42
+ exit ${no_dep_exit_code}
43
+ fi
2
44
3
45
declare -a PACKAGE_FILES=(
4
46
' README.md'
@@ -9,24 +51,29 @@ declare -a PACKAGE_FILES=(
9
51
10
52
cd " $( dirname " $0 " ) " && cd ..
11
53
12
- VERSION=$( jq -r .version " package.json" )
13
- NAME=$( jq -r .name " package.json" )
54
+ VERSION=$( " $jq_cmd " -r .version " package.json" )
55
+ NAME=$( " $jq_cmd " -r .name " package.json" )
14
56
PACKAGED=" $NAME -$VERSION .zip"
15
57
16
- npm install
17
- npm run make-standalone
58
+ e " Installing dependencies ..."
59
+ " $npm_cmd " install
60
+
61
+ e " Building standalone ..."
62
+ " $npm_cmd " run make-standalone
18
63
19
64
mkdir " standalone"
20
65
mv " build/standalone.php" " standalone/indexer.php"
21
66
22
- 7z a " $PACKAGED " " standalone/"
23
- 7z a " $PACKAGED " " build/"
67
+ e " Creating release file ..."
68
+ " $sz_cmd " a " $PACKAGED " " standalone/"
69
+ " $sz_cmd " a " $PACKAGED " " build/"
24
70
71
+ e " Cleaning up ..."
25
72
rm -rf " build" " standalone"
26
73
27
74
for FILE in " ${PACKAGE_FILES[@]} " ; do
28
- echo " Adding $FILE ..."
29
- 7z a " $PACKAGED " " $FILE "
75
+ e " Adding $FILE ..."
76
+ " $sz_cmd " a " $PACKAGED " " $FILE "
30
77
done
31
78
32
- printf " \n\n>> $PACKAGED \n "
79
+ e " > $PACKAGED "
0 commit comments