We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee72c57 commit 0e2b5d9Copy full SHA for 0e2b5d9
src/etc/rustup.sh
@@ -413,7 +413,9 @@ then
413
CFG_INSTALL_FLAGS="${CFG_INSTALL_FLAGS} --prefix=${CFG_PREFIX}"
414
fi
415
416
-CFG_TMP_DIR=`mktemp -d 2>/dev/null || mktemp -d -t 'rustup-tmp-install' 2>/dev/null` || CFG_TMP_DIR=$(create_tmp_dir)
+CFG_TMP_DIR=$(mktemp -d 2>/dev/null \
417
+ || mktemp -d -t 'rustup-tmp-install' 2>/dev/null \
418
+ || create_tmp_dir)
419
420
RUST_URL="https://static.rust-lang.org/dist"
421
RUST_PACKAGE_NAME=rust-nightly
0 commit comments