mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2025-11-29 17:38:24 +08:00
ignore exit code of 'make clean' as it won't find a Makefile if called as first action (which is the case for "compiler all")
This commit is contained in:
@@ -6,8 +6,8 @@ function comp_clean() {
|
|||||||
|
|
||||||
cd $BUILDPATH
|
cd $BUILDPATH
|
||||||
|
|
||||||
make -f Makefile clean
|
make -f Makefile clean || true
|
||||||
make clean
|
make clean || true
|
||||||
find -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} \+
|
find -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} \+
|
||||||
|
|
||||||
cd $CWD
|
cd $CWD
|
||||||
@@ -69,4 +69,4 @@ function comp_build() {
|
|||||||
function comp_all() {
|
function comp_all() {
|
||||||
comp_clean
|
comp_clean
|
||||||
comp_build
|
comp_build
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user