mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-22 14:00:14 -05:00
19 lines
310 B
Makefile
19 lines
310 B
Makefile
|
|
package: zip
|
|
|
|
zip: version
|
|
cd build && zip -r -D ../../../report/reportassets/assets.zip *
|
|
|
|
version: build
|
|
go run scripts/version.go
|
|
|
|
build: install
|
|
yarn build
|
|
|
|
install: clean
|
|
yarn install
|
|
|
|
clean:
|
|
pwd
|
|
[ ! -e ../../report/reportassets/assets.zip ] || rm ../../report/reportassets/assets.zip
|
|
rm -rf build
|