Skip to content

Commit 3155a9f

Browse files
committed
Revert "fix: yolo installer fix"
This reverts commit 4244dc7.
1 parent 4244dc7 commit 3155a9f

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

aztec-up/bin/aztec-install

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,9 @@ function install_jq {
131131
}
132132

133133
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
134+
# Download aztec-up from root (the canonical latest version).
135+
# aztec-up is a version manager, so it's not version-specific.
136+
curl -fsSL "$INSTALL_URI/aztec-up" -o "$shared_bin_path/aztec-up"
141137
chmod +x "$shared_bin_path/aztec-up"
142138
}
143139

0 commit comments

Comments
 (0)