mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-12-02 05:57:21 +01:00
default to stable versions, make latest optional
This commit is contained in:
parent
202891cbdb
commit
f70ffb8e6b
@ -1,6 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
export OCEAN_VERSION=latest
|
|
||||||
# Must be set to true for the first run, change it to "false" to avoid migrating the smart contracts on each run.
|
# Must be set to true for the first run, change it to "false" to avoid migrating the smart contracts on each run.
|
||||||
export DEPLOY_CONTRACTS="true"
|
export DEPLOY_CONTRACTS="true"
|
||||||
# Ganache specific option, these two options have no effect when not running ganache-cli
|
# Ganache specific option, these two options have no effect when not running ganache-cli
|
||||||
@ -10,6 +9,14 @@ export REUSE_DATABASE="false"
|
|||||||
export KEEPER_NETWORK_NAME="ganache"
|
export KEEPER_NETWORK_NAME="ganache"
|
||||||
export ARTIFACTS_FOLDER=~/.ocean/keeper-contracts/artifacts
|
export ARTIFACTS_FOLDER=~/.ocean/keeper-contracts/artifacts
|
||||||
|
|
||||||
|
# default to `stable` versions of all components
|
||||||
|
# unless `--latest` argument is given
|
||||||
|
if [ "$1" == "--latest" ]; then
|
||||||
|
export OCEAN_VERSION=latest
|
||||||
|
else
|
||||||
|
export OCEAN_VERSION=stable
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$1" == "--no-pleuston" ]
|
if [ "$1" == "--no-pleuston" ]
|
||||||
then
|
then
|
||||||
export REUSE_DATABASE="true"
|
export REUSE_DATABASE="true"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user