From 7c5091af34fdfa7e68f9f4cb84481eb94b1af5e4 Mon Sep 17 00:00:00 2001 From: t_watts Date: Wed, 21 Oct 2020 11:12:30 -0400 Subject: [PATCH] fixed parameter order for bq load --- run_audit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_audit.sh b/run_audit.sh index e591edc..999cc9e 100644 --- a/run_audit.sh +++ b/run_audit.sh @@ -12,4 +12,4 @@ python3 "$DIR/get_projects.py" python3 "$DIR/owner_report.py" # load into BQ table -bq load --source_format=NEWLINE_DELIMITED_JSON "$DIR/owners_nldj.json" $TABLE "$DIR/schema.json" \ No newline at end of file +bq load --source_format=NEWLINE_DELIMITED_JSON $TABLE "$DIR/owners_nldj.json" "$DIR/schema.json" \ No newline at end of file