Skip to content

Commit

Permalink
more fixes ref #105
Browse files Browse the repository at this point in the history
  • Loading branch information
burner1024 committed Apr 1, 2024
1 parent 7235cc4 commit a005853
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions extra/buildall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ if [[ ! -f $compile_exe ]]; then
fi

# compile all
for d in "$src"/*; do
# shellcheck disable=SC2045 # We shouldn't have non-alphanumeric names here.
for d in $(ls "$src"); do
if [[ -d "$src/$d" && "$d" != "template" ]]; then # if it's a dir and not a template
cd "$src/$d"
# build file list
# shellcheck disable=SC2010 # We shouldn't have non-alphanumeric names here.
for f in $(# build file list
ls | grep -i "\.ssl$"
); do
for f in $(ls | grep -i "\.ssl$"); do
# shellcheck disable=SC2001 # Simple replacement doesn't work, need regex.
int="$(echo "$f" | sed 's|\.ssl$|.int|')"
if grep -qi "^$int " "$scripts_lst" || [[ "$d" == "global" ]]; then # if file is in scripts.lst or a global script
Expand Down

0 comments on commit a005853

Please sign in to comment.