Skip to content

Commit 1cfa90f

Browse files
committed
Clarify go build vs go install - #21
1 parent 0cb67ae commit 1cfa90f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,13 @@ export CGO_LDFLAGS="-L$MQ_INSTALLATION_PATH/lib64 -Wl,-rpath,$MQ_INSTALLATION_PA
181181

182182
Confirm the settings are correct by compiling the MQ JMS Golang package, for example as follows; (no errors will be shown if successful)
183183
```bash
184+
# Check that the source files compile successfully
184185
cd $GOPATH/src/github.com/ibm-messaging/mq-golang-jms20/mqjms/
185186
go build
187+
188+
# If you want to install the compiled module into your path for later use
189+
# you can do so by running
190+
go install
186191
```
187192

188193
### Verify the installation by executing the tests

0 commit comments

Comments
 (0)