mirror of
https://github.com/fluencelabs/examples
synced 2024-12-04 19:20:17 +00:00
c660c57b6f
* Hardcode marine version * Hardcode
7 lines
240 B
Bash
Executable File
7 lines
240 B
Bash
Executable File
#!/bin/bash
|
|
set -o pipefail -o errexit -o nounset
|
|
set -x
|
|
|
|
MARINE_RELEASE="https://github.com/fluencelabs/marine/releases/download/marine-v0.12.6/marine"
|
|
curl -sS -L $MARINE_RELEASE -o /usr/local/bin/marine && chmod +x /usr/local/bin/marine
|