We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52ecd5c commit 7d3261dCopy full SHA for 7d3261d
foundryup/foundryup
@@ -206,7 +206,9 @@ EOF
206
# Build the repo and install the binaries locally to the .foundry bin directory.
207
ensure cargo build --bins --release
208
for bin in "${BINS[@]}"; do
209
- mv -f "target/release/$bin" "target/release/$bin.exe" "$FOUNDRY_DIR"
+ for try_path in target/release/$bin target/release/$bin.exe; do
210
+ [ -f "$try_path" ] && ensure mv -f "$try_path" "$FOUNDRY_DIR"
211
+ done
212
done
213
214
# If help2man is installed, use it to add Foundry man pages.
0 commit comments