diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2020-03-30 08:41:40 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2020-03-30 08:41:40 -0400 |
| commit | c919ac25e12a95218e0f63f142482be54583b820 (patch) | |
| tree | f438e7ee91d1e6a0d59dbfcd93a321a6cc6bc17f /make_dist.sh | |
| parent | 550f33c4ce0460be26a2332d5b6c6a4734a2c6ba (diff) | |
#914 first phase of changes
Diffstat (limited to 'make_dist.sh')
| -rwxr-xr-x | make_dist.sh | 8 |
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} |
