From 2053ccb7173f195d43f99e36318b5a9d224fa1e0 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 17 Jul 2018 14:52:45 -0400 Subject: [PATCH] ci: don't cd / when building example app this gets deleted after the build, so just build it in the efl directory to avoid permission errors when building on osx Differential Revision: https://phab.enlightenment.org/D6607 --- .ci/build-efl-app.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.ci/build-efl-app.sh b/.ci/build-efl-app.sh index 94013a3ba3..c8a0e6aa0b 100755 --- a/.ci/build-efl-app.sh +++ b/.ci/build-efl-app.sh @@ -2,8 +2,6 @@ set -e -cd / - #clone our examples from efl git clone --depth=1 -b master http://git.enlightenment.org/tools/examples.git/ @@ -15,5 +13,5 @@ meson . ./build ninja -C build all #remove the folder again so its not left in the artifacts -cd / +cd ../../../.. rm -rf examples