Skip to content

Commit

Permalink
Properly quote DIR variable in a template
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn authored May 10, 2024
1 parent 357c54b commit 65b44e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridge/cli/init/templates/build__sh.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
set -o errexit
# Get the directory of the current script.
DIR=$(dirname "$0")
DIR="$(dirname "$0")"
# Use our Python script to install dependencies
INSTALL_DEPS_SCRIPT="$DIR/install_deps.py"
Expand Down

0 comments on commit 65b44e5

Please sign in to comment.