From ae9dec24aa26cf0a89dc7bca72f002ddf70797fa Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 24 Jun 2020 22:49:39 -0500 Subject: [PATCH] Bugfix: settings files are stored in 'data/settings/' not 'data/build/settings/'. --- build/scripts/bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/scripts/bootstrap.sh b/build/scripts/bootstrap.sh index 285f6b5..931e718 100644 --- a/build/scripts/bootstrap.sh +++ b/build/scripts/bootstrap.sh @@ -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 -- 1.8.3.1