Skip to content

Commit ed77c9c

Browse files
committed
Remove double quote if rhs is number
1 parent 0225c27 commit ed77c9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rustup-init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ get_architecture() {
273273

274274
mips64)
275275
_bitness="$(get_bitness)"
276-
if [ "$_bitness" -eq "32" ]; then
276+
if [ "$_bitness" -eq 32 ]; then
277277
if [ "$_ostype" = "unknown-linux-gnu" ]; then
278278
# 64-bit kernel with 32-bit userland
279279
# endianness suffix is appended later

0 commit comments

Comments
 (0)