]> Kevux Git Server - fll/commitdiff
Bugfix: settings files are stored in 'data/settings/' not 'data/build/settings/'.
authorKevin Day <thekevinday@gmail.com>
Thu, 25 Jun 2020 03:49:39 +0000 (22:49 -0500)
committerKevin Day <thekevinday@gmail.com>
Thu, 25 Jun 2020 03:49:39 +0000 (22:49 -0500)
build/scripts/bootstrap.sh

index 285f6b57a501559cc3cfb6037bf25d0ec056d568..931e7184ac08655dd49f63ff6c84dd29b85ec3e4 100644 (file)
@@ -41,7 +41,7 @@ bootstrap_main() {
   local path_build=build/
   local path_build_stage=build/stage/
   local path_data=data/
-  local path_settings=data/build/settings/
+  local path_settings="${path_data}settings/"
   local path_sources=sources/
   local path_c=sources/c/
   local path_work=
@@ -135,7 +135,7 @@ bootstrap_main() {
 
   settings_file="${path_data}build/$settings_name"
   settings_defines="${path_data}build/defines"
-  path_settings="${path_data}build/settings/"
+  path_settings="${path_data}settings/"
   path_build_stage="${path_build}stage/"
 
   bootstrap_handle_colors