9 lines
135 B
Bash
9 lines
135 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
export GOPATH=/opt/gopath
|
||
|
|
||
|
PATH=$GOPATH/bin:$PATH
|
||
|
export PATH
|
||
|
|
||
|
cd /opt/gopath/src/github.com/hashicorp/packer && gmake deps
|