Fix a comparison in win-setup.ps1
authorGerald Combs <gerald@wireshark.org>
Tue, 16 Aug 2016 19:25:55 +0000 (12:25 -0700)
committerGerald Combs <gerald@wireshark.org>
Wed, 17 Aug 2016 21:41:10 +0000 (21:41 +0000)
commit74e8b539a22043869186ca1af46ba796a5378225
tree0e917e92eef2cbc6fc1f1691eed1c379c2eb5971
parentf92f16916a8d84758c52fc014dbbc3cf36a59d44
Fix a comparison in win-setup.ps1

"if ($SomeVariable > 0)" is valid PowerShell syntax, but it writes
the value of $SomeVariable to a file named "0". Use the "-gt" operator
instead.

Change-Id: I17e0f7033008ead3b24fed8c0c91869747ff81f1
Reviewed-on: https://code.wireshark.org/review/17093
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Reviewed-by: Gerald Combs <gerald@wireshark.org>
tools/win-setup.ps1