aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-12-15 10:48:55 +0300
committerValentin Popov <info@valentineus.link>2017-12-15 10:48:55 +0300
commitac0b3e77420acebce04766d9fe4b20c2f344924c (patch)
treef61136d536689a4ef977e8cb35367cc292d3173c /build.sh
parenta9996a8b494f851a6cfd187c24583e8307f29b45 (diff)
downloadauth_token-ac0b3e77420acebce04766d9fe4b20c2f344924c.tar.xz
auth_token-ac0b3e77420acebce04766d9fe4b20c2f344924c.zip
The file 'CONTRIBUTING.md' was added
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/build.sh b/build.sh
index cce96e7..b0d6f76 100644
--- a/build.sh
+++ b/build.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# Author: Valentin Popov
# Email: info@valentineus.link
-# Date: 2017-12-02
+# Date: 2017-12-15
# Usage: /bin/sh build.sh
# Description: Build the final package for installation in Moodle.
@@ -12,9 +12,10 @@ export PATH="$PATH:/usr/local/scripts"
# Build the package
cd ..
mv "./moodle-auth_token" "./auth_token"
-zip -9 -r "auth_token.zip" "auth_token" \
- -x "auth_token/.git*" \
- -x "auth_token/.travis.yml" \
+zip -9 -r "auth_token.zip" "auth_token" \
+ -x "auth_token/.git*" \
+ -x "auth_token/.travis.yml" \
+ -x "auth_token/.CONTRIBUTING.md" \
-x "auth_token/build.sh"
# End of work