mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-14 19:25:16 -05:00
Fix issue when git status returns empty string.
This commit is contained in:
parent
73baabfa82
commit
bbccdfe3fb
1 changed files with 18 additions and 1 deletions
|
@ -80,7 +80,24 @@ class GitCommit
|
|||
haxe.macro.Context.info('[WARN] Could not determine current git commit; is this a proper Git repository?', pos);
|
||||
}
|
||||
|
||||
var output:String = branchProcess.stdout.readLine();
|
||||
var output:String = '';
|
||||
try
|
||||
{
|
||||
output = branchProcess.stdout.readLine();
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
if (e.message == 'Eof')
|
||||
{
|
||||
// Do nothing.
|
||||
// Eof = No output.
|
||||
}
|
||||
else
|
||||
{
|
||||
// Rethrow other exceptions.
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
trace('Git Status Output: ${output}');
|
||||
|
||||
// Generates a string expression
|
||||
|
|
Loading…
Reference in a new issue