Fix the clean target so that it doesn't error out if there's no runtime Makefile in the tree.
parent
b3c3b69a36
commit
4edd100ff9
3
Makefile
3
Makefile
|
@ -60,7 +60,8 @@ clean: clean-appbundle clean-docker clean-dist clean-docs clean-node clean-pip c
|
|||
rm -rf web/pgadmin/static/css/generated/.cache
|
||||
|
||||
clean-runtime:
|
||||
cd runtime && make clean
|
||||
if [ -f runtime/Makefile ]; then (cd runtime && make clean); fi;
|
||||
rm -rf build-*
|
||||
|
||||
clean-appbundle:
|
||||
rm -rf mac-build/
|
||||
|
|
Loading…
Reference in New Issue