ci: don't cd / when building example app
authorMike Blumenkrantz <zmike@samsung.com>
Tue, 17 Jul 2018 18:52:45 +0000 (14:52 -0400)
committerYoungbok Shin <youngb.shin@samsung.com>
Thu, 26 Jul 2018 08:26:36 +0000 (17:26 +0900)
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

index 94013a3..c8a0e6a 100755 (executable)
@@ -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