diff options
Diffstat (limited to 'apps/compiler/includes/functions.sh')
-rw-r--r-- | apps/compiler/includes/functions.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/compiler/includes/functions.sh b/apps/compiler/includes/functions.sh index 92d2d7bdcd..e0f5560b14 100644 --- a/apps/compiler/includes/functions.sh +++ b/apps/compiler/includes/functions.sh @@ -6,8 +6,8 @@ function comp_clean() { cd $BUILDPATH - make -f Makefile clean - make clean + make -f Makefile clean || true + make clean || true find -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} \+ cd $CWD @@ -69,4 +69,4 @@ function comp_build() { function comp_all() { comp_clean comp_build -}
\ No newline at end of file +} |