Skip to content

Commit

Permalink
Fix go run
Browse files Browse the repository at this point in the history
  • Loading branch information
hupe1980 committed Aug 18, 2021
1 parent aee8a63 commit c196162
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ setup:
.PHONY: run
## run: Runs gopwn
run:
@go run cmd/*.go cyclic create 25
@go run $$(ls -1 cmd/*.go | grep -v _test.go) cyclic create 10

.PHONY: build
## build: Builds a beta version of gopwn
Expand Down
2 changes: 1 addition & 1 deletion scripts/completions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ set -e
rm -rf completions
mkdir completions
for sh in bash zsh fish; do
go run cmd/*.go completion "$sh" >"completions/gopwn.$sh"
go run $(ls -1 cmd/*.go | grep -v _test.go) completion "$sh" >"completions/gopwn.$sh"
done

0 comments on commit c196162

Please sign in to comment.