summaryrefslogtreecommitdiff
path: root/make_dist.sh
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2020-03-30 08:41:40 -0400
committerPliable Pixels <pliablepixels@gmail.com>2020-03-30 08:41:40 -0400
commitc919ac25e12a95218e0f63f142482be54583b820 (patch)
treef438e7ee91d1e6a0d59dbfcd93a321a6cc6bc17f /make_dist.sh
parent550f33c4ce0460be26a2332d5b6c6a4734a2c6ba (diff)
#914 first phase of changes
Diffstat (limited to 'make_dist.sh')
-rwxr-xr-xmake_dist.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/make_dist.sh b/make_dist.sh
index 8a450ef9..61726a7c 100755
--- a/make_dist.sh
+++ b/make_dist.sh
@@ -1,2 +1,8 @@
+#!/bin/bash
+DISTROS="dist-all"
rm -fr dist/
-npm run dist-all
+echo $1
+if [ ! -z "$1" ]; then
+ DISTROS=$1
+fi
+npm run dist-${DISTROS}