From fc577b4b79ff39d9e9892a1f1bb9a84a1f961546 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 10 Jul 2017 14:38:54 -0400 Subject: [PATCH] Travis: looks like /build exists in the resulting system, so use /cbuild --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3eebf6851..7af7cac7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,6 @@ install: - pip install pycodestyle script: - - docker run -v $PWD:/build calamares bash -lc "mkdir /build ; chmod 755 /build ; cd /build && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON . && make -j2" + - docker run -v $PWD:/cbuild calamares bash -lc "mkdir /cbuild ; chmod 755 /cbuild ; cd /cbuild && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON . && make -j2" - pycodestyle --exclude=thirdparty,.git $PWD