Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/MightyPork/tangara-fw/commit/08c6c5d322615bf235210aa79f77e9a66a9f9093?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

.env: quote vars, remove silly comment

custom
Robin Howard 1 year ago
parent a7ac34eaa9
commit 08c6c5d322
  1. 11
      .env

11
.env

@ -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"

Loading…
Cancel
Save