mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-13 15:52:01 +07:00
[build scripts] exit codes in macOS file watcher and TouchBar support build scripts
GitOrigin-RevId: 1c456f25eac7800eed11cbbcd308f09128bb76f2
This commit is contained in:
committed by
intellij-monorepo-bot
parent
43a5187ea6
commit
f8e1e3b0a0
@@ -1,11 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
rm -rf build
|
||||
mkdir build
|
||||
cd build
|
||||
cd build || exit 1
|
||||
|
||||
cmake -DCMAKE_BUILD_TYPE=Release ..
|
||||
make VERBOSE=1
|
||||
cmake -DCMAKE_BUILD_TYPE=Release .. || exit 2
|
||||
|
||||
make VERBOSE=1 || exit 3
|
||||
|
||||
if [ "$1" = "install" ]; then
|
||||
make install/strip VERBOSE=1
|
||||
fi
|
||||
make install/strip VERBOSE=1 || exit 4
|
||||
fi
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
rm -rf build
|
||||
mkdir build
|
||||
cd build
|
||||
cd build || exit 1
|
||||
|
||||
cmake -DCMAKE_BUILD_TYPE=Release ..
|
||||
make VERBOSE=1
|
||||
cmake -DCMAKE_BUILD_TYPE=Release .. || exit 2
|
||||
|
||||
make VERBOSE=1 || exit 3
|
||||
|
||||
if [ "$1" = "install" ]; then
|
||||
make install/strip VERBOSE=1
|
||||
fi
|
||||
make install/strip VERBOSE=1 || exit 4
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user