Skip to content

Commit

Permalink
update build and install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Omar-Khawaja committed Aug 5, 2020
1 parent cd3ea38 commit 7a48626
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

go build -o ../terraform-provider-hello_$(git describe --tags) ..
go build -o ../terraform-provider-hello_$(git describe --tags --abbrev=0) ..
4 changes: 2 additions & 2 deletions scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash

go build -o terraform-provider-hello_$(git describe --tags) ..
mv terraform-provider-hello_$(git describe --tags) ~/.terraform.d/plugins/
go build -o terraform-provider-hello_$(git describe --tags --abbrev=0) ..
mv terraform-provider-hello_$(git describe --tags --abbrev=0) ~/.terraform.d/plugins/

0 comments on commit 7a48626

Please sign in to comment.