Remove a dependency on Git from build scripts

see ddc3e929e
This commit is contained in:
YoshiRulz 2023-04-26 22:35:09 +10:00
parent 9cbd238997
commit 0960661509
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -11,5 +11,5 @@ shift
if [ -z "$NUGET_PACKAGES" ]; then export NUGET_PACKAGES="$HOME/.nuget/packages"; fi
printf "running 'dotnet %s' in %s configuration, extra args: %s\n" "$cmd" "$config" "$*"
version=$(grep -Po "MainVersion = \"\K(.*)(?=\")" src/BizHawk.Common/VersionInfo.cs)
git_hash=$(git rev-parse --verify HEAD)
git_hash="$(git rev-parse --verify HEAD || printf "0000000000000000000000000000000000000000")"
dotnet "$cmd" BizHawk.sln -c "$config" -m -clp:NoSummary -p:Version="$version" -p:SourceRevisionId="$git_hash" "$@"