From 78b4ed19ca956c1653cb8d1b3ef1dc1a53c55425 Mon Sep 17 00:00:00 2001 From: Anthony ARNAUD Date: Wed, 6 Dec 2023 00:08:11 -0500 Subject: [PATCH] ensure ccache directory is present --- scripts/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build.sh b/scripts/build.sh index eff54d3..12db2be 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -19,6 +19,7 @@ then export CCACHE_DIR=${CCACHE_DIR:-default /mnt/ccache} export CCACHE_MAXSIZE=10G export CCACHE_COMPILERCHECK="%compiler% -dumpmachine; %compiler% -dumpversion" + mkdir -p ${CCACHE_DIR} else export CLEAN_BUILD=true fi