mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-28 16:39:43 +00:00
Remove test data
A dummy command was used to check the script would fail if a command was missing. Not being a real command, it always made the script fail as a command was missing.
This commit is contained in:
parent
5bffa7453f
commit
761558f612
1 changed files with 2 additions and 2 deletions
|
@ -4,8 +4,8 @@
|
|||
}
|
||||
|
||||
$MissingTools = $false
|
||||
$tools = "cl", "link", "rc", "mt", "awooga"
|
||||
$descriptions = "MSVC Compiler", "MSVC Linker", "MS Windows Resource Compiler", "MS Windows Manifest Tool", "A made up command"
|
||||
$tools = "cl", "link", "rc", "mt"
|
||||
$descriptions = "MSVC Compiler", "MSVC Linker", "MS Windows Resource Compiler", "MS Windows Manifest Tool"
|
||||
for ($i = 0; $i -lt $tools.Length; $i++) {
|
||||
$present = $true
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue