9859042f54
Avoid duplicating logic in the shell files.
9 lines
183 B
Plaintext
9 lines
183 B
Plaintext
echo "Installing the dependencies"
|
|
./update-deps-linux
|
|
|
|
echo "Building the installer"
|
|
go build -ldflags="-s -w" -o Installer "./cmd/install"
|
|
|
|
echo "Running the installer"
|
|
./Installer
|