Skip to content

Commit

Permalink
Update GitMacro.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackx2 committed Nov 4, 2024
1 parent a38eb45 commit 659f59f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/funkin/backend/macro/GitMacro.hx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class GitMacro
}
catch (e)
{
trace("Error Gettings Hash from Git" + e);
trace("Error getting current commit number from git: " + e);
}
return macro $v{0} #end
}
Expand All @@ -62,8 +62,8 @@ class GitMacro
return macro $v{process.stdout.readLine()};
}
catch (e)
{
trace("Error Gettings Hash from Git" + e);
{
trace("Error getting current commit hash from git: " + e);
}
return macro $v{"~"} #end
}
Expand All @@ -82,7 +82,7 @@ class GitMacro
}
catch (e)
{
trace("Error Gettings Hash from Git" + e);
trace("Error getting current branch from git: " + e);
}
return macro $v{""} #end
}
Expand Down

0 comments on commit 659f59f

Please sign in to comment.