Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit b92c63c

Browse files
author
John Beisner
committed
Fixing a conditional.
1 parent 5eae1a3 commit b92c63c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/obtain/dotnet-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ install_dotnet() {
645645
download "$download_link" $zip_path || download_failed=true
646646

647647
# if the download fails, download the legacy_download_link
648-
if [ "$download_failed" = true && "$valid_legacy_download_link" = true ]; then
648+
if [ "$download_failed" = true ] && [ "$valid_legacy_download_link" = true ]; then
649649
say "Cannot download: $download_link"
650650
zip_path=$(mktemp $temporary_file_template)
651651
say_verbose "Legacy zip path: $zip_path"

0 commit comments

Comments
 (0)