buildDotnetModule: fix indentation

This commit is contained in:
David McFarland 2023-06-20 23:32:54 -03:00
parent afe26f5f1d
commit bca3a9edfc

View file

@ -40,15 +40,15 @@ dotnetInstallHook() {
dotnetPack() { dotnetPack() {
local -r project="${1-}" local -r project="${1-}"
env dotnet pack ${project-} \ env dotnet pack ${project-} \
-p:ContinuousIntegrationBuild=true \ -p:ContinuousIntegrationBuild=true \
-p:Deterministic=true \ -p:Deterministic=true \
--output "$out/share" \ --output "$out/share" \
--configuration "@buildType@" \ --configuration "@buildType@" \
--no-build \ --no-build \
--runtime "@runtimeId@" \ --runtime "@runtimeId@" \
${dotnetPackFlags[@]} \ ${dotnetPackFlags[@]} \
${dotnetFlags[@]} ${dotnetFlags[@]}
} }
if (( "${#projectFile[@]}" == 0 )); then if (( "${#projectFile[@]}" == 0 )); then