mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 15:26:46 -06:00
Only try to run make clean if there is a Makefile present.
This commit is contained in:
parent
569d05df4e
commit
0e799b16b0
@ -50,7 +50,9 @@ _create_venv() {
|
|||||||
|
|
||||||
_build_runtime() {
|
_build_runtime() {
|
||||||
cd ${SOURCE_DIR}/runtime
|
cd ${SOURCE_DIR}/runtime
|
||||||
|
if [ -f Makefile ]; then
|
||||||
make clean
|
make clean
|
||||||
|
fi
|
||||||
${QMAKE}
|
${QMAKE}
|
||||||
make
|
make
|
||||||
cp -r pgAdmin4.app "${BUNDLE_DIR}"
|
cp -r pgAdmin4.app "${BUNDLE_DIR}"
|
||||||
|
Loading…
Reference in New Issue
Block a user