File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ rsvm_ls_remote()
299
299
fi
300
300
301
301
STABLE_VERSION=$( rsvm_ls_channel stable)
302
- rsvm_file_download http ://static.rust-lang.org/dist/index.txt " $RSVM_DIR /cache/index.txt"
302
+ rsvm_file_download https ://static.rust-lang.org/dist/index.txt " $RSVM_DIR /cache/index.txt"
303
303
VERSIONS=$( cat " $RSVM_DIR /cache/index.txt" \
304
304
| command egrep -o " ^/dist/rust-$RSVM_NORMAL_PATTERN -$RSVM_PLATFORM .tar.gz" \
305
305
| command egrep -o " $RSVM_VERSION_PATTERN " \
@@ -333,15 +333,15 @@ rsvm_ls_channel()
333
333
case $1 in
334
334
staging|rc)
335
335
POSTFIX=' -rc'
336
- rsvm_file_download http ://static.rust-lang.org/dist/staging/dist/channel-rust-stable " $RSVM_DIR /cache/channel-rust-staging"
336
+ rsvm_file_download https ://static.rust-lang.org/dist/staging/dist/channel-rust-stable " $RSVM_DIR /cache/channel-rust-staging"
337
337
VERSIONS=$( cat " $RSVM_DIR /cache/channel-rust-staging" \
338
338
| command egrep -o " rust-$RSVM_VERSION_PATTERN -$RSVM_PLATFORM .tar.gz" \
339
339
| command egrep -o " $RSVM_VERSION_PATTERN " \
340
340
| command sort \
341
341
| command uniq)
342
342
;;
343
343
stable|beta|nightly)
344
- rsvm_file_download http ://static.rust-lang.org/dist/channel-rust-$1 " $RSVM_DIR /cache/channel-rust-$1 "
344
+ rsvm_file_download https ://static.rust-lang.org/dist/channel-rust-$1 " $RSVM_DIR /cache/channel-rust-$1 "
345
345
VERSIONS=$( cat " $RSVM_DIR /cache/channel-rust-$1 " \
346
346
| command egrep -o " rust-$RSVM_VERSION_PATTERN -$RSVM_PLATFORM .tar.gz" \
347
347
| command egrep -o " $RSVM_VERSION_PATTERN " \
You can’t perform that action at this time.
0 commit comments