summary refs log tree commit diff
path: root/pkgs/build-support/dotnet
diff options
context:
space:
mode:
authorDavid McFarland <corngood@gmail.com>2023-06-20 23:32:54 -0300
committerDavid McFarland <corngood@gmail.com>2023-06-24 19:13:16 -0300
commitbca3a9edfc51b1e29673e98151df1b6a94dc44dd (patch)
tree7023f239d035718d4c2710ed513a18672453424d /pkgs/build-support/dotnet
parentafe26f5f1ddbae20808d32c82a4bf6b8933bd1e3 (diff)
downloadnixpkgs-bca3a9edfc51b1e29673e98151df1b6a94dc44dd.tar
nixpkgs-bca3a9edfc51b1e29673e98151df1b6a94dc44dd.tar.gz
nixpkgs-bca3a9edfc51b1e29673e98151df1b6a94dc44dd.tar.bz2
nixpkgs-bca3a9edfc51b1e29673e98151df1b6a94dc44dd.tar.lz
nixpkgs-bca3a9edfc51b1e29673e98151df1b6a94dc44dd.tar.xz
nixpkgs-bca3a9edfc51b1e29673e98151df1b6a94dc44dd.tar.zst
nixpkgs-bca3a9edfc51b1e29673e98151df1b6a94dc44dd.zip
buildDotnetModule: fix indentation
Diffstat (limited to 'pkgs/build-support/dotnet')
-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