diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-03-23 15:40:51 -0400 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2020-03-23 15:40:51 -0400 |
| commit | 9ce2af2a6c20c061bb1317728262bad305d05f27 (patch) | |
| tree | b654aa70fbf8206939987077ba19ffc4bc738c35 | |
| parent | f72c5b7a1d4db9b16f3b15cebe12bbca110bf7ef (diff) | |
Don't limit to files (allow symlinks)
| -rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
