Skip to content
This repository has been archived by the owner on Aug 17, 2021. It is now read-only.

Commit

Permalink
add compatibility with bashv3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alistairewj committed Mar 17, 2021
1 parent f37c62b commit 35ae66d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion concepts/make_concepts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ do
# only run SQL queries
if [[ "${fn: -4}" == ".sql" ]]; then
# table name is file name minus extension
tbl="${fn::-4}"
tbl=`echo $fn | rev | cut -d. -f2- | rev`

# skip first_day_sofa as it depends on other firstday queries
if [[ "${tbl}" == "first_day_sofa" ]]; then
Expand Down

0 comments on commit 35ae66d

Please sign in to comment.