tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
buildDotnetModule: fix indentation
David McFarland
2 years ago
bca3a9ed
afe26f5f
+8
-8
1 changed file
expand all
collapse all
unified
split
pkgs
build-support
dotnet
build-dotnet-module
hooks
dotnet-install-hook.sh
+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
43
-
env dotnet pack ${project-} \
44
44
-
-p:ContinuousIntegrationBuild=true \
45
45
-
-p:Deterministic=true \
46
46
-
--output "$out/share" \
47
47
-
--configuration "@buildType@" \
48
48
-
--no-build \
43
43
+
env dotnet pack ${project-} \
44
44
+
-p:ContinuousIntegrationBuild=true \
45
45
+
-p:Deterministic=true \
46
46
+
--output "$out/share" \
47
47
+
--configuration "@buildType@" \
48
48
+
--no-build \
49
49
--runtime "@runtimeId@" \
50
50
-
${dotnetPackFlags[@]} \
51
51
-
${dotnetFlags[@]}
50
50
+
${dotnetPackFlags[@]} \
51
51
+
${dotnetFlags[@]}
52
52
}
53
53
54
54
if (( "${#projectFile[@]}" == 0 )); then