Skip to content

Commit 057d3d2

Browse files
fix output of cargo script
1 parent 44b23f2 commit 057d3d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/cargo.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ fi
1212
while read package; do
1313
cargo install "$package" >> /dev/null
1414
if [[ $? -eq 0 ]]; then
15-
echo "$package is installed from gh!"
15+
echo "$package is installed from cargo!"
1616
else
17-
echo "$package" >> "$BASEDIR/../gh_failed.txt"
17+
echo "$package" >> "$BASEDIR/../cargo_failed.txt"
1818
fi
1919
done < "$BASEDIR/../packages/cargo.txt"

0 commit comments

Comments
 (0)