.env: quote vars, remove silly comment

This commit is contained in:
Robin Howard 2024-02-10 21:05:16 +11:00
parent a7ac34eaa9
commit 08c6c5d322

11
.env
View file

@ -2,10 +2,7 @@
#
# SPDX-License-Identifier: CC0-1.0
# Load-bearing useless command, for bash. I have *no* idea why, but evaluating
# $@ is necessary for the rest to work.
repo_dir=$(pwd)
export PROJ_PATH=$repo_dir
export IDF_PATH=$repo_dir/lib/esp-idf
. $IDF_PATH/export.sh
repo_dir="$(pwd)"
export PROJ_PATH="$repo_dir"
export IDF_PATH="$repo_dir/lib/esp-idf"
. "$IDF_PATH/export.sh"