From 1d255ed794dfefb0303d07dc7433bd3491fcf459 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sat, 2 Dec 2017 16:02:08 +0400 Subject: Build script --- build.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..cce96e7 --- /dev/null +++ b/build.sh @@ -0,0 +1,21 @@ +#!/bin/sh +# Author: Valentin Popov +# Email: info@valentineus.link +# Date: 2017-12-02 +# Usage: /bin/sh build.sh +# Description: Build the final package for installation in Moodle. + +# Updating the Environment +PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" +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" \ + -x "auth_token/build.sh" + +# End of work +exit 0 \ No newline at end of file -- cgit v1.2.3