Skip to content

Commit

Permalink
Fix create_claro_project.tmpl.sh to Correctly Escape Special Chars in…
Browse files Browse the repository at this point in the history
… MODULE.bazel
  • Loading branch information
JasonSteving99 committed Apr 29, 2024
1 parent 878b557 commit 37be0f4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/create_claro_project.tmpl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ echo '{{DOT_BAZEL_RC}}' > "$dest/.bazelrc"
echo '{{DOT_BAZEL_VERSION}}' > "$dest/.bazelversion"

# MODULE.bazel
echo '{{MODULE_DOT_BAZEL}}' > "$dest/MODULE.bazel"
cat << \EOF > "$dest/MODULE.bazel"
{{MODULE_DOT_BAZEL}}
EOF


# BUILD
echo "load(\"@claro-lang//:rules.bzl\", \"claro_binary\")
Expand Down

0 comments on commit 37be0f4

Please sign in to comment.