aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-03-23 15:40:51 -0400
committerJoshua M. Boniface <joshua@boniface.me>2020-03-23 15:40:51 -0400
commit9ce2af2a6c20c061bb1317728262bad305d05f27 (patch)
treeb654aa70fbf8206939987077ba19ffc4bc738c35 /build.sh
parentf72c5b7a1d4db9b16f3b15cebe12bbca110bf7ef (diff)
Don't limit to files (allow symlinks)
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 238871c16..f54ce04ce 100755
--- a/build.sh
+++ b/build.sh
@@ -24,7 +24,7 @@ usage() {
list_platforms() {
declare -a platforms
platforms=(
- $( find deployment -maxdepth 1 -mindepth 1 -type f -name "build.*" | awk -F'.' '{ $1=""; print $2 "." $3 }' )
+ $( find deployment -maxdepth 1 -mindepth 1 -name "build.*" | awk -F'.' '{ $1=""; print $2 "." $3 }' | sort )
)
echo -e "Valid platforms:"
echo