Skip to content

Commit

Permalink
Merge pull request #28 from sobolevn/patch-1
Browse files Browse the repository at this point in the history
Properly quote `DIR` variable in a template
  • Loading branch information
emdoyle authored May 14, 2024
2 parents 9b6c5b1 + 65b44e5 commit ce9b9d6
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 ce9b9d6

Please sign in to comment.