From 3b72a03fe29db6037a23635639843f38450c16e5 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Tue, 26 Sep 2023 01:32:41 +0200 Subject: Build: Faster recompilation --- refetch_deps.sh | 52 +++++++++++++++++++++++----------------------------- 1 file changed, 23 insertions(+), 29 deletions(-) (limited to 'refetch_deps.sh') diff --git a/refetch_deps.sh b/refetch_deps.sh index 19be044..d3081b2 100644 --- a/refetch_deps.sh +++ b/refetch_deps.sh @@ -1,44 +1,38 @@ -if [ -d "./source/kit" ]; then - rm -rf "./source/kit" +if [ -d "source/kit" ]; then + rm -rf "source/kit" fi - -if [ -d "./source/stb" ]; then - rm -rf "./source/stb" +if [ -d "source/stb" ]; then + rm -rf "source/stb" fi - -if [ -f "./source/thirdparty/miniaudio.h" ]; then - rm -rf "./source/thirdparty/miniaudio.h" +if [ -f "source/thirdparty/miniaudio.h" ]; then + rm -rf "source/thirdparty/miniaudio.h" fi - -if [ -d "./_tmp_kit" ]; then - rm -rf "./_tmp_kit" +if [ -d "_tmp_kit" ]; then + rm -rf "_tmp_kit" fi - -if [ -d "./_tmp_stb" ]; then - rm -rf "./_tmp_stb" +if [ -d "_tmp_stb" ]; then + rm -rf "_tmp_stb" fi - -if [ -d "./_tmp_miniaudio" ]; then - rm -rf "./_tmp_miniaudio" +if [ -d "_tmp_miniaudio" ]; then + rm -rf "_tmp_miniaudio" fi git clone --quiet --depth 1 https://guattari.tech/kit.git _tmp_kit git clone --quiet --depth 1 https://github.com/nothings/stb.git _tmp_stb git clone --quiet --depth 1 https://github.com/mackron/miniaudio.git _tmp_miniaudio -if [ ! -d "./source/stb" ]; then - mkdir "./source/stb" +if [ ! -d "source/stb" ]; then + mkdir "source/stb" fi - -if [ ! -d "./source/thirdparty" ]; then - mkdir "./source/thirdparty" +if [ ! -d "source/thirdparty" ]; then + mkdir "source/thirdparty" fi -mv "./_tmp_kit/source/kit" "./source/kit" -mv "./_tmp_stb/stb_image.h" "./source/stb/stb_image.h" -mv "./_tmp_stb/stb_truetype.h" "./source/stb/stb_truetype.h" -mv "./_tmp_miniaudio/miniaudio.h" "./source/thirdparty/miniaudio.h" +mv "_tmp_kit/source/kit" "source/kit" +mv "_tmp_stb/stb_image.h" "source/stb/stb_image.h" +mv "_tmp_stb/stb_truetype.h" "source/stb/stb_truetype.h" +mv "_tmp_miniaudio/miniaudio.h" "source/thirdparty/miniaudio.h" -rm -rf "./_tmp_kit" -rm -rf "./_tmp_stb" -rm -rf "./_tmp_miniaudio" +rm -rf "_tmp_kit" +rm -rf "_tmp_stb" +rm -rf "_tmp_miniaudio" -- cgit v1.2.3