buildDotnetModule: fix indentation

+8 -8
+8 -8
pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-install-hook.sh
··· 40 40 41 41 dotnetPack() { 42 42 local -r project="${1-}" 43 - env dotnet pack ${project-} \ 44 - -p:ContinuousIntegrationBuild=true \ 45 - -p:Deterministic=true \ 46 - --output "$out/share" \ 47 - --configuration "@buildType@" \ 48 - --no-build \ 43 + env dotnet pack ${project-} \ 44 + -p:ContinuousIntegrationBuild=true \ 45 + -p:Deterministic=true \ 46 + --output "$out/share" \ 47 + --configuration "@buildType@" \ 48 + --no-build \ 49 49 --runtime "@runtimeId@" \ 50 - ${dotnetPackFlags[@]} \ 51 - ${dotnetFlags[@]} 50 + ${dotnetPackFlags[@]} \ 51 + ${dotnetFlags[@]} 52 52 } 53 53 54 54 if (( "${#projectFile[@]}" == 0 )); then