Skip to content

Commit bb2507e

Browse files
committed
fix syntax bug caused by quoting env var
1 parent 3761d2f commit bb2507e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mimic-iv/concepts/make_concepts.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ do
3535

3636
# not skipping - so generate the table on bigquery
3737
echo "Generating ${TARGET_DATASET}.${tbl}"
38-
bq query "${BQ_OPTIONS}" --destination_table=${TARGET_DATASET}.${tbl} < ${d}/${fn}
38+
bq query ${BQ_OPTIONS} --destination_table=${TARGET_DATASET}.${tbl} < ${d}/${fn}
3939
fi
4040
done
4141
done
@@ -47,5 +47,5 @@ do
4747
table=`echo $table_path | rev | cut -d/ -f1 | rev`
4848

4949
echo "Generating ${TARGET_DATASET}.${table}"
50-
bq query "${BQ_OPTIONS}" --destination_table=${TARGET_DATASET}.${table} < ${table_path}.sql
50+
bq query ${BQ_OPTIONS} --destination_table=${TARGET_DATASET}.${table} < ${table_path}.sql
5151
done

0 commit comments

Comments
 (0)