mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 07:16:52 -06:00
Fix the clean target so that it doesn't error out if there's no runtime Makefile in the tree.
This commit is contained in:
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
Block a user