stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=2053ccb7173f195d43f99e36318b5a9d224fa1e0
commit 2053ccb7173f195d43f99e36318b5a9d224fa1e0 Author: Mike Blumenkrantz <[email protected]> Date: Tue Jul 17 14:52:45 2018 -0400 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 --
