fix(Makefile): ensure `pkg` target rebuilds status client
Otherwise `make pkg` would deploy already built status client, regardless of its initial configuration. `make clean` is not required before `make pkg` anymore. fixes: #6241
This commit is contained in:
parent
a9b2459d79
commit
0bfc51d4a9
6
Makefile
6
Makefile
|
@ -547,7 +547,11 @@ $(STATUS_CLIENT_7Z): $(STATUS_CLIENT_EXE)
|
|||
echo -e $(BUILD_MSG) "7z"
|
||||
7z a $(STATUS_CLIENT_7Z) ./$(OUTPUT)
|
||||
|
||||
pkg: $(PKG_TARGET)
|
||||
# pkg target rebuilds status client
|
||||
# this is to ensure production version of the app is deployed
|
||||
pkg:
|
||||
rm $(NIM_STATUS_CLIENT) | :
|
||||
$(MAKE) $(PKG_TARGET)
|
||||
|
||||
pkg-linux: check-pkg-target-linux $(STATUS_CLIENT_APPIMAGE)
|
||||
|
||||
|
|
Loading…
Reference in New Issue