dont require git to build
This commit is contained in:
parent
f0819b988c
commit
fd29f48d01
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
#define SCM_REV_STR ""
|
||||
#define SCM_DESC_STR ""
|
||||
#define SCM_BRANCH_STR ""
|
||||
#define SCM_IS_MASTER 1
|
Loading…
Reference in New Issue