diff options
| author | Robin Howard <robin@rhoward.id.au> | 2024-02-10 21:05:16 +1100 |
|---|---|---|
| committer | Robin Howard <robin@rhoward.id.au> | 2024-02-10 21:05:32 +1100 |
| commit | 08c6c5d322615bf235210aa79f77e9a66a9f9093 (patch) | |
| tree | 450620c226056d7931920de5e8e17a6d7e364cef /.env | |
| parent | a7ac34eaa9b895e16aed816c504d167027898d7b (diff) | |
| download | tangara-fw-08c6c5d322615bf235210aa79f77e9a66a9f9093.tar.gz | |
.env: quote vars, remove silly comment
Diffstat (limited to '.env')
| -rw-r--r-- | .env | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -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" |
