diff options
| author | Fuwn <[email protected]> | 2022-03-18 00:37:47 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-18 00:37:47 -0700 |
| commit | d77e9b6477ec2455546d9de672d6eae62f41cbf5 (patch) | |
| tree | 1f8c280c12c6b363dd3ee68464078a1347e7f9ba | |
| parent | refactor: update organization name (diff) | |
| download | capybara-d77e9b6477ec2455546d9de672d6eae62f41cbf5.tar.xz capybara-d77e9b6477ec2455546d9de672d6eae62f41cbf5.zip | |
refactor(make): module variable
| -rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,8 +1,10 @@ +MODULE := github.com/gemrest/capybara + fmt: - go fmt github.com/gemrest/capybara... + go fmt $(MODULE)... run: fmt - go run github.com/gemrest/capybara + go run $(MODULE) build: fmt go build |