Skip to content

Commit 7f13603

Browse files
authored
Merge pull request cesanta#242 from ewxrjk/readme
Fix broken build instructions
2 parents b1fb367 + 01ff449 commit 7f13603

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

auth_server/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
### Building local image
22

33
```
4-
git clone https://github.com/cesanta/docker_auth.git
5-
cd docker_auth/auth_server
64
# copy ca certificate to /etc/ssl/certs/ca-certificates.crt
75
pip install gitpython
8-
mkdir /var/tmp/go
6+
mkdir -p /var/tmp/go/src/github.com/cesanta
7+
cd /var/tmp/go/src/github.com/cesanta
8+
git clone https://github.com/cesanta/docker_auth.git
9+
cd docker_auth/auth_server
910
export GOPATH=/var/tmp/go
1011
export PATH=$PATH:$GOPATH/bin
1112
# download dependencies
1213
make deps
1314
# build source
15+
make generate
1416
make
1517
```

0 commit comments

Comments
 (0)