diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2018-07-17 14:52:45 -0400 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2018-07-26 08:55:58 +0200 |
commit | 2053ccb7173f195d43f99e36318b5a9d224fa1e0 (patch) | |
tree | 449e6ec2a43092676746bbbf6839de406c3348e0 /.ci | |
parent | 005ba932344bbf4eb022df96ea24be67093324c0 (diff) | |
download | efl-2053ccb7173f195d43f99e36318b5a9d224fa1e0.tar.gz |
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
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/build-efl-app.sh | 4 |
1 files changed, 1 insertions, 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 |