From: Kevin Day Date: Thu, 25 Jun 2020 03:49:39 +0000 (-0500) Subject: Bugfix: settings files are stored in 'data/settings/' not 'data/build/settings/'. X-Git-Tag: 0.5.0~129 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=ae9dec24aa26cf0a89dc7bca72f002ddf70797fa;p=fll Bugfix: settings files are stored in 'data/settings/' not 'data/build/settings/'. --- 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