diff options
author | Seth For Privacy <seth@sethforprivacy.com> | 2022-07-18 10:32:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 10:32:54 -0400 |
commit | 89a2df67cd8b345d0e00e3fdf6b18a8af6abf877 (patch) | |
tree | 49e6ba2dfb5d2832a4a3180f5b90d481343f3b4c | |
parent | Set version in ENV var (diff) | |
download | monero-89a2df67cd8b345d0e00e3fdf6b18a8af6abf877.tar.xz |
Migrate VERSION variable to non-export
-rw-r--r-- | contrib/gitian/DOCKRUN.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gitian/DOCKRUN.md b/contrib/gitian/DOCKRUN.md index 8ea277940..4d48e02db 100644 --- a/contrib/gitian/DOCKRUN.md +++ b/contrib/gitian/DOCKRUN.md @@ -41,7 +41,6 @@ set your GitHub account name for the script to use: ```bash export GH_USER=<github account name> -export VERSION=v0.18.0.0 ``` * PGP keys - if you don't have one already, you can use `gpg --quick-gen-key` to generate it. @@ -58,6 +57,7 @@ The dockrun.sh script will do everything to build the binaries. Just specify the version to build as its only argument, e.g. ```bash +VERSION=v0.18.0.0 ./dockrun.sh $VERSION ``` |