Skip to content

Commit b1dc9ad

Browse files
authored
fix: correct var names in branch/version check (#3547)
1 parent 16ba137 commit b1dc9ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

foundryup/foundryup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ main() {
4141
need_cmd cargo
4242

4343
# Ignore branches/versions as we do not want to modify local git state
44-
if [ -n "$FOUNDRYUP_REPO" ] || [ -n "$FOUNDRY_BRANCH" ] || [ -n "$FOUNDRY_VERSION" ]; then
44+
if [ -n "$FOUNDRYUP_REPO" ] || [ -n "$FOUNDRYUP_BRANCH" ] || [ -n "$FOUNDRYUP_VERSION" ]; then
4545
warn "--branch, --version, and --repo arguments are ignored during local install"
4646
fi
4747

0 commit comments

Comments
 (0)