Merge commit 'a5db3d72f1bc9a8253e327a18d535d244a635b6a' into mason-improvements

This commit is contained in:
Dane Springmeyer
2016-11-08 15:30:44 -08:00
38 changed files with 811 additions and 38 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
# dynamically determine the path to this package
HERE="$( cd "$( dirname "${BASH_SOURCE[0]}" )" > /dev/null && pwd )"
# dynamically take name of package from directory
MASON_NAME=$(basename $(dirname $HERE))
# dynamically take the version of the package from directory
MASON_VERSION=$(basename $HERE)
MASON_LIB_FILE=bin/${MASON_NAME}
. ${MASON_DIR}/mason.sh
# inherit all functions from base
source ${HERE}/../../${MASON_NAME}/base/common.sh
mason_run "$@"