From ba677196af47be28b695c861b1b77cb4d8ac57e3 Mon Sep 17 00:00:00 2001 From: blek Date: Sat, 16 Sep 2023 12:07:55 +1000 Subject: [PATCH] feat: simplify paths and add them to gitignore --- .gitignore | 8 ++++++++ scripts/build-ci.sh | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9047a38 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# This file may be used by build-ci.sh +# and will have the sudo password in it, +# if its used. +.env + +# build-ci directories +target +cache diff --git a/scripts/build-ci.sh b/scripts/build-ci.sh index 7ed3e90..9666042 100755 --- a/scripts/build-ci.sh +++ b/scripts/build-ci.sh @@ -45,7 +45,7 @@ SUDO_PASS=${SUDO_PASS} # The cache directory -MAKE_CACHE=${MAKE_CACHE:-$(pwd)/alc_make_cache} +MAKE_CACHE=${MAKE_CACHE:-$(pwd)/cache} # The output directory TARGET_DIR=${TARGET_DIR:-$(pwd)/target}