From 43b2167b3525f0f64a1796bfaa4eb7e9478255e4 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sat, 2 Dec 2017 16:02:17 +0400 Subject: Build script --- build.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 build.sh (limited to 'build.sh') diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..430e44d --- /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-tool_managertokens" "./tool_managertokens" +zip -9 -r "tool_managertokens.zip" "tool_managertokens" \ + -x "tool_managertokens/.git*" \ + -x "tool_managertokens/.travis.yml" \ + -x "tool_managertokens/build.sh" + +# End of work +exit 0 \ No newline at end of file -- cgit v1.2.3