Fix devenv templates

This commit is contained in:
Evan Fiordeliso 2023-11-28 11:21:22 -05:00
parent ebdb09b528
commit 95852888e1
1 changed files with 2 additions and 2 deletions

View File

@ -13,12 +13,12 @@
# https://devenv.sh/scripts/
scripts.welcome-banner.exec = ''
echo "Welcome to the $NAME development environment."
echo "Welcome to the $$NAME development environment."
echo "Bazel version: $(bazel --version | cut -d ' ' -f 2)"
'';
scripts.build.exec = ''
bazel build //main:$NAME
bazel build //main:$$NAME
'';
scripts.clean.exec = ''