Remove useless statements.
authorHiroshi Inoue <h-inoue@dream.email.ne.jp>
Sat, 21 Nov 2015 00:43:53 +0000 (09:43 +0900)
committerHiroshi Inoue <h-inoue@dream.email.ne.jp>
Sat, 21 Nov 2015 00:43:53 +0000 (09:43 +0900)
installer/buildInstallers.ps1

index 2b899de462cf0901f80c38354c17606ec3d27022..1fbfda5ab86e3e31c1fd1beb808eeb57016602bb 100644 (file)
@@ -71,9 +71,7 @@ function findRuntime($runtime_version)
            }
        }
        $dllinsystem = "${pgmvc}\${rt_dllname}"
-       if (Test-Path -Path $dllinsystem) {
-           $MSVCRUNTIMEDLL = $dllinsystem
-       } else {
+       if (-not(Test-Path -Path $dllinsystem)) {
            throw "${messageSpec}`nneither $dllinredist nor $dllinsystem exists unfortunately"
        }
    }