We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4244dc7 commit 3155a9fCopy full SHA for 3155a9f
aztec-up/bin/aztec-install
@@ -131,13 +131,9 @@ function install_jq {
131
}
132
133
function install_aztec_up {
134
- if [ -n "$VERSION" ]; then
135
- # Download aztec-up from version dir (useful for testing).
136
- curl -fsSL "$INSTALL_URI/$VERSION/aztec-up" -o "$shared_bin_path/aztec-up"
137
- else
138
- # Download aztec-up from root (the canonical latest version).
139
- curl -fsSL "$INSTALL_URI/aztec-up" -o "$shared_bin_path/aztec-up"
140
- fi
+ # Download aztec-up from root (the canonical latest version).
+ # aztec-up is a version manager, so it's not version-specific.
+ curl -fsSL "$INSTALL_URI/aztec-up" -o "$shared_bin_path/aztec-up"
141
chmod +x "$shared_bin_path/aztec-up"
142
143
0 commit comments