resolve issue with undefined variable in Windows

This commit is contained in:
Jeffrey Brubaker 2014-07-03 16:54:01 -04:00
parent 4a7495a75d
commit 505c3c9076

View file

@ -106,7 +106,9 @@ class RemoteGitBuild extends Build
// Remove the key file and git wrapper:
unlink($keyFile);
unlink($gitSshWrapper);
if (!IS_WIN) {
unlink($gitSshWrapper);
}
return $success;
}