Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add comments to version definition #619

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .dappnode_profile
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/bin/bash

# Script sourced by installer script `dappnode_install.sh`
# It is sourced to grab and download the core packages content from github and/or IPFS
# - Github: i.e `BIND_VERSION=0.2.11`
# - IPFS: i.e `DAPPMANAGER_VERSION=/ipfs/QmRe6V5vZYFv68WeX3vh2N9hVEeDnp8f7rmxP47xjGNrNF:0.2.71` This string will be splitted by the semicolon `:`
# - `/ipfs/QmRe6...` -> indicates the ipfs hash used to download the content
# - `0.2.71` -> indicates the version. It must be the one uploaded to such IPFS hash

export BIND_VERSION="${BIND_VERSION:-0.2.11}"
export IPFS_VERSION="${IPFS_VERSION:-0.2.22}"
export VPN_VERSION="${VPN_VERSION:-0.2.10}"
Expand Down