-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae122ac
commit 8824877
Showing
4 changed files
with
11 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
build: | ||
@go build -o bin/squarecloud cmd/squarecloud/main.go | ||
|
||
.PHONY: completions | ||
completions: | ||
mkdir -p completions | ||
bin/squarecloud completion bash >"completions/completions-bash.bash" | ||
bin/squarecloud completion fish >"completions/completions-fish.fish" | ||
bin/squarecloud completion zsh >"completions/completions-zsh.zsh" | ||
|
||
.PHONY: install | ||
install: | ||
@mkdir -p /usr/local/bin | ||
install bin/squarecloud /usr/local/bin | ||
|
||
.PHONY: uninstall | ||
uninstall: | ||
rm /usr/local/bin/squarecloud |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.