aboutsummaryrefslogtreecommitdiff
path: root/common/build/sample-create
diff options
context:
space:
mode:
Diffstat (limited to 'common/build/sample-create')
-rwxr-xr-xcommon/build/sample-create17
1 files changed, 0 insertions, 17 deletions
diff --git a/common/build/sample-create b/common/build/sample-create
deleted file mode 100755
index df642d3b..00000000
--- a/common/build/sample-create
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env bash
-CALLED_FROM=$( pwd -P )
-SCRIPTNAME=$(basename "$0")
-SCRIPTPATH=$( cd "$(dirname "$0")" ; pwd -P )
-GRADLE=$SCRIPTPATH/gradlew
-
-SAMPLE_PATH=""
-
-if [ -n "$1" ]; then
- SAMPLE_PATH=$CALLED_FROM/$1
-fi
-
-SAMPLES_COMMON=$( cd "$SCRIPTPATH/.." ; pwd -P )
-
-SAMPLES_COMMON=$(perl -e "use File::Spec; print File::Spec->abs2rel(@ARGV)" $SAMPLES_COMMON $SAMPLE_PATH)
-
-$GRADLE -b $SCRIPTPATH/build.gradle --info create -Pout=$SAMPLE_PATH -PcalledFrom=$CALLED_FROM -PpathToSamplesCommon=$SAMPLES_COMMON