mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
add correct exit code
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
0c01e22679
commit
5f3058f9b9
4
Makefile
4
Makefile
@ -56,10 +56,10 @@ else
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
build-extensions:
|
build-extensions:
|
||||||
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), (cd $(dir) && npm install && npm run build || exit);)
|
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), (cd $(dir) && npm install && npm run build || exit $?);)
|
||||||
|
|
||||||
test-extensions:
|
test-extensions:
|
||||||
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), (cd $(dir) && npm install --dev && npm run test || exit);)
|
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), (cd $(dir) && npm install --dev && npm run test || exit $?);)
|
||||||
|
|
||||||
build-npm: build-extension-types
|
build-npm: build-extension-types
|
||||||
yarn npm:fix-package-version
|
yarn npm:fix-package-version
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user