summary refs log tree commit diff
path: root/pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-install-hook.sh
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-06-28 23:41:18 +0200
committerGitHub <noreply@github.com>2023-06-28 23:41:18 +0200
commit198bd0a4a7dbf059b4bbb307c0b389ee8d8e5d1c (patch)
tree1eb1cec186e41f0f2bbed767dff2c5fe906230cb /pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-install-hook.sh
parent37bceead9019439c608464e87377626608becb09 (diff)
parent7af46fb0476330aaa2fe7a1627827007005918ef (diff)
downloadnixpkgs-198bd0a4a7dbf059b4bbb307c0b389ee8d8e5d1c.tar
nixpkgs-198bd0a4a7dbf059b4bbb307c0b389ee8d8e5d1c.tar.gz
nixpkgs-198bd0a4a7dbf059b4bbb307c0b389ee8d8e5d1c.tar.bz2
nixpkgs-198bd0a4a7dbf059b4bbb307c0b389ee8d8e5d1c.tar.lz
nixpkgs-198bd0a4a7dbf059b4bbb307c0b389ee8d8e5d1c.tar.xz
nixpkgs-198bd0a4a7dbf059b4bbb307c0b389ee8d8e5d1c.tar.zst
nixpkgs-198bd0a4a7dbf059b4bbb307c0b389ee8d8e5d1c.zip
Merge pull request #239622 from corngood/dotnet-misc
dotnet: misc fixes 
Diffstat (limited to 'pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-install-hook.sh')
-rw-r--r--pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-install-hook.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-install-hook.sh b/pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-install-hook.sh
index 8035b42d086..3f2a89c4140 100644
--- a/pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-install-hook.sh
+++ b/pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-install-hook.sh
@@ -40,15 +40,15 @@ dotnetInstallHook() {
 
     dotnetPack() {
         local -r project="${1-}"
-         env dotnet pack ${project-} \
-             -p:ContinuousIntegrationBuild=true \
-             -p:Deterministic=true \
-             --output "$out/share" \
-             --configuration "@buildType@" \
-             --no-build \
+        env dotnet pack ${project-} \
+            -p:ContinuousIntegrationBuild=true \
+            -p:Deterministic=true \
+            --output "$out/share" \
+            --configuration "@buildType@" \
+            --no-build \
             --runtime "@runtimeId@" \
-             ${dotnetPackFlags[@]}  \
-             ${dotnetFlags[@]}
+            ${dotnetPackFlags[@]}  \
+            ${dotnetFlags[@]}
     }
 
     if (( "${#projectFile[@]}" == 0 )); then