11 lines
215 B
Plaintext
11 lines
215 B
Plaintext
echo "Installing the dependencies"
|
|
go get -u github.com/mailru/easyjson/...
|
|
easyjson -pkg common
|
|
go get
|
|
|
|
echo "Building the installer"
|
|
go build -o Installer "./cmd/install"
|
|
|
|
echo "Running the installer"
|
|
./Installer
|