Skip to content

Commit

Permalink
Fix make install location
Browse files Browse the repository at this point in the history
  • Loading branch information
sajayantony committed Aug 19, 2021
1 parent 5aff12f commit a523cba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
BINARY_NAME=hora
INSTALL_DIR=~/.hora
INSTALL_DIR=~/.hora
all: build test

build: build-cli build-plugins
Expand All @@ -14,8 +14,8 @@ build-plugins:
go build -o ./bin/plugins/ ./plugins/verifier/sbom

install:
mkdir -p ${INSTALL_DIR}
cp -r ./bin ${INSTALL_DIR}
mkdir -p ${INSTALL_DIR}
cp -r ./bin/* ${INSTALL_DIR}

test:
go test -v ./cmd/hora
Expand Down

0 comments on commit a523cba

Please sign in to comment.