aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-12-06 17:03:59 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2020-12-06 17:03:59 +0000
commit4c6a364551196833aef9d4ad74ec29510f5068ae (patch)
treeed30bf98c6159a87fa51616aa4cca1431802b2a1 /Makefile
parentc4e2c664a5f7488ab11e4433aeb9efcffc33a871 (diff)
ridded of extranneous pkg directory
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 4272ac2..1647f85 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,14 @@
debug-datamaps:
- dlv test ./pkg/datamaps/ --wd ./pkg/datamaps/
+ dlv test ./datamaps/ --wd .`/datamaps/
dummy-import:
- ./datamaps import --returnname "Hunkers" --datamapname "Tonk 1" --xlsxpath pkg/datamaps/testdata/
+ ./build/datamaps import --returnname "Hunkers" --datamapname "Tonk 1" --xlsxpath datamaps/testdata/
dummy-datamap-import:
- ./datamaps datamap --datamapname "Tonk 1" --import pkg/datamaps/testdata/datamap_matches_test_template.csv
+ ./build/datamaps datamap --datamapname "Tonk 1" --import datamaps/testdata/datamap_matches_test_template.csv
build:
- go build -o datamaps ./cmd/datamaps/main.go
+ go build -o build/datamaps ./cmd/datamaps/main.go
test-all:
go test ./...