From f02aac323cd94f111976fc19338ba19b752890f7 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Mon, 14 Aug 2017 15:12:38 +0400 Subject: Adding a script to build the final package. --- build.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..e8d3595 --- /dev/null +++ b/build.sh @@ -0,0 +1,16 @@ +#!/bin/sh +# Author: Valentin Popov +# Email: info@valentineus.link +# Date: 2017-08-14 +# 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 +zip -9 -r auth-http.zip ./ -x ".git*" -x ".travis.yml" -x "build.sh" + +# End of work +exit 0 \ No newline at end of file -- cgit v1.2.3