Skip to content

Commit

Permalink
Add a quote and disable SC2046
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenk committed Sep 5, 2023
1 parent f778fa5 commit 7b44c66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion run_pyspark_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ source env_setup.sh
pip install -r ./python/requirements.txt

for ex in python/examples/*.py; do
# shellcheck disable=SC2046
spark-submit \
--master local[5] \
--conf spark.eventLog.enabled=true \
Expand All @@ -15,5 +16,5 @@ for ex in python/examples/*.py; do
--conf "spark.sql.catalog.local.warehouse=$PWD/warehouse" \
$(cat "${ex}.conf" || echo "") \
--name "${ex}" \
${ex} 2>&1 | tee -a "${ex}.out"
"${ex}" 2>&1 | tee -a "${ex}.out"
done

0 comments on commit 7b44c66

Please sign in to comment.