From 6abba55b5c502cced32e39d699e777661418291b Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 25 Oct 2019 13:33:41 -0400 Subject: [PATCH] ci: use shell to directly set base_dir for osx builds Summary: this crashes somehow and is impossible to debug remotely Reviewers: bu5hm4n Reviewed By: bu5hm4n Subscribers: bu5hm4n, cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D10529 --- .ci/ci-setup-ccache.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/ci-setup-ccache.sh b/.ci/ci-setup-ccache.sh index 0a5087883f..f93b64f847 100755 --- a/.ci/ci-setup-ccache.sh +++ b/.ci/ci-setup-ccache.sh @@ -7,6 +7,6 @@ if [ "$DISTRO" != "" ] ; then docker exec $(cat $HOME/cid) ccache -pz else cp .ci/ccache.conf ~/.ccache - ccache -o base_dir="$(pwd)" + echo "base_dir = $pwd" >> ~/.ccache/ccache.conf ccache -pz fi