about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohannes Hoff <johshoff@gmail.com>2014-12-28 12:59:19 +0100
committerJohannes Hoff <johshoff@gmail.com>2014-12-28 12:59:19 +0100
commit0e2b5d99af9a32ce535286fc166b5818cd213e74 (patch)
tree3debf0fa829e25eaf7853a9966a1c875c13f8818
parentee72c57bc9081327fcc37f4ecf4bb378969e577f (diff)
downloadrust-0e2b5d99af9a32ce535286fc166b5818cd213e74.tar.gz
rust-0e2b5d99af9a32ce535286fc166b5818cd213e74.zip
Split overly long line
-rwxr-xr-xsrc/etc/rustup.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/etc/rustup.sh b/src/etc/rustup.sh
index 697afacf898..85e15e36327 100755
--- a/src/etc/rustup.sh
+++ b/src/etc/rustup.sh
@@ -413,7 +413,9 @@ then
     CFG_INSTALL_FLAGS="${CFG_INSTALL_FLAGS} --prefix=${CFG_PREFIX}"
 fi
 
-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 \
+           || mktemp -d -t 'rustup-tmp-install' 2>/dev/null \
+           || create_tmp_dir)
 
 RUST_URL="https://static.rust-lang.org/dist"
 RUST_PACKAGE_NAME=rust-nightly