dont require git to build

This commit is contained in:
zeromus 2018-06-01 16:56:46 -04:00
parent f0819b988c
commit fd29f48d01
2 changed files with 6 additions and 2 deletions

View File

@ -41,7 +41,7 @@ function GetGitExe()
WScript.Echo("Cannot find git or git.cmd, check your PATH:\n" +
wshShell.ExpandEnvironmentStrings("%PATH%"));
WScript.Quit(1);
WScript.Quit(0);
}
function GetFirstStdOutLine(cmd)
@ -54,7 +54,7 @@ function GetFirstStdOutLine(cmd)
{
// catch "the system cannot find the file specified" error
WScript.Echo("Failed to exec " + cmd + " this should never happen");
WScript.Quit(1);
WScript.Quit(0);
}
}

View File

@ -0,0 +1,4 @@
#define SCM_REV_STR ""
#define SCM_DESC_STR ""
#define SCM_BRANCH_STR ""
#define SCM_IS_MASTER 1