resolve issue with undefined variable in Windows

This commit is contained in:
Jeffrey Brubaker 2014-07-03 16:54:01 -04:00
parent cf0cc172b7
commit 3434c2714f

View file

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