diff --git a/.repro/000_Makefile.repro b/.repro/000_Makefile.repro index ad98caf..6407c89 100644 --- a/.repro/000_Makefile.repro +++ b/.repro/000_Makefile.repro @@ -1,6 +1,6 @@ # identify the REPRO and associated Docker image -REPRO_NAME=gocli +REPRO_NAME=go-cli REPRO_DOCKER_ORG=cirss REPRO_IMAGE_TAG=latest REPRO_IMAGE=${REPRO_DOCKER_ORG}/${REPRO_NAME}:${REPRO_IMAGE_TAG} diff --git a/.repro/Dockerfile b/.repro/Dockerfile index be3a473..3f4a538 100755 --- a/.repro/Dockerfile +++ b/.repro/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:20.04 -ENV REPRO_NAME gocli +ENV REPRO_NAME go-cli ENV REPRO_MNT /mnt/${REPRO_NAME} ENV REPRO_USER repro ENV REPRO_UID 1000 diff --git a/go.mod b/go.mod index 2dd3fab..0e61150 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/cirss/gocli +module github.com/cirss/go-cli go 1.16 diff --git a/go/Makefile b/go/Makefile index f782c98..3139862 100755 --- a/go/Makefile +++ b/go/Makefile @@ -6,5 +6,4 @@ package: clean: go clean ./... rm -rf ./.build/* - chmod -R +w ./.go - rm -rf ./.go/pkg + rm -rf ./.gopath/pkg diff --git a/go/cli/tests/program_context_test.go b/go/cli/tests/program_context_test.go index 104e672..54b2f14 100644 --- a/go/cli/tests/program_context_test.go +++ b/go/cli/tests/program_context_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/cirss/gocli/go/cli" + "github.com/cirss/go-cli/go/cli" ) func main() {