We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20fcf88 commit e404990Copy full SHA for e404990
Makefile
@@ -1,5 +1,9 @@
1
go_version = go1.7.linux-amd64
2
3
+ifeq ($(shell uname), Darwin)
4
+ go_version = go1.7.darwin-amd64
5
+endif
6
+
7
go:
8
9
@echo "\033[1mInstall Go compiler\033[0m"
@@ -8,7 +12,7 @@ go:
12
13
@if [ ! -d env/go ]; then \
10
14
cd env && \
11
- wget https://storage.googleapis.com/golang/$(go_version).tar.gz && \
15
+ curl -O https://storage.googleapis.com/golang/$(go_version).tar.gz && \
16
tar -xf ./$(go_version).tar.gz && \
17
rm ./$(go_version).tar.gz ; \
18
fi
@@ -30,6 +34,8 @@ build:
30
34
31
35
@echo "\033[1mdone!\033[0m"
32
36
37
+ @file bin/postgres-ci-git-hook
38
33
39
install: build
40
41
sudo cp bin/postgres-ci-git-hook /usr/bin/postgres-ci-git-hook
0 commit comments