Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix nonexistent tasks in the Makefile #227

Merged
merged 1 commit into from
Jan 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ clean: ## Clean build bundles
-rm -f ./pkg/version/z_update_version.go
-rm -rf ./_build/bundles

build-all: build-local-darwin-all build-local-ubuntu-all build-local-centos-all build-local-darwin-arm64-all build-local-windows-all ## Build all platforms (darwin, linux, windows)
build-all: build-local-darwin-all build-local-linux-all build-local-darwin-arm64-all build-local-windows-all ## Build all platforms (darwin, linux, windows)

build-local-darwin: ## Build kusion tool chain for macOS
# Delete old artifacts
Expand Down Expand Up @@ -151,9 +151,6 @@ build-local-linux-all: build-local-linux ## Build kusion & kcl tool chain for l
# Copy README.md
cp ./README.md ./_build/bundles/kusion-linux

# Copy kusion
cp -r ./_build/bundles/kusion-linux/bin ./_build/bundles/kusion-linux

# Build tgz
cd ./_build/bundles/kusion-linux && tar -zcvf ../kusion-linux.tgz .
cd ./_build/bundles && go run ../../scripts/md5file/main.go kusion-linux.tgz > kusion-linux.tgz.md5.txt
Expand Down