Makefile: Add the ability to create a source code release with all deps #104240
3
Makefile
3
Makefile
@ -91,7 +91,8 @@ shaman-checkout-id-setter:
|
|||||||
go build -v ${BUILD_FLAGS} ${PKG}/cmd/shaman-checkout-id-setter
|
go build -v ${BUILD_FLAGS} ${PKG}/cmd/shaman-checkout-id-setter
|
||||||
|
|
||||||
webapp-deps:
|
webapp-deps:
|
||||||
yarn --cwd web/app install
|
# We have to use --force here to ensure that the offile package cache is up to date with no missing files
|
||||||
|
|||||||
|
yarn --cwd web/app install --force
|
||||||
|
|
||||||
webapp-static: addon-packer
|
webapp-static: addon-packer
|
||||||
$(MAKE) clean-webapp-static
|
$(MAKE) clean-webapp-static
|
||||||
|
Loading…
Reference in New Issue
Block a user
This comment should be hidden from the regular output. Right now it's actually shown when running
make webapp-deps
(and any other target that runs this target).