mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +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
|
#!/bin/sh
|
||||||
|
|
||||||
rm -rf build
|
rm -rf build
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build || exit 1
|
||||||
|
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release ..
|
cmake -DCMAKE_BUILD_TYPE=Release .. || exit 2
|
||||||
make VERBOSE=1
|
|
||||||
|
make VERBOSE=1 || exit 3
|
||||||
|
|
||||||
if [ "$1" = "install" ]; then
|
if [ "$1" = "install" ]; then
|
||||||
make install/strip VERBOSE=1
|
make install/strip VERBOSE=1 || exit 4
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
rm -rf build
|
rm -rf build
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build || exit 1
|
||||||
|
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release ..
|
cmake -DCMAKE_BUILD_TYPE=Release .. || exit 2
|
||||||
make VERBOSE=1
|
|
||||||
|
make VERBOSE=1 || exit 3
|
||||||
|
|
||||||
if [ "$1" = "install" ]; then
|
if [ "$1" = "install" ]; then
|
||||||
make install/strip VERBOSE=1
|
make install/strip VERBOSE=1 || exit 4
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user