We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2970b65 commit 5a4e701Copy full SHA for 5a4e701
1 file changed
.diploi/helm/app.yaml
@@ -42,12 +42,8 @@ spec:
42
- /bin/sh
43
- -c
44
- >
45
- set -euo pipefail;
46
- dotnet build;
47
- dotnet tool restore;
48
- if ! dotnet tool run libman restore; then
49
- echo "libman restore failed but continuing pod startup" >&2;
50
- fi
+ dotnet build || exit 1;
+ (dotnet tool restore && dotnet tool run libman restore) || echo "Libman restore failed, continuing...";
51
workingDir: /app{{ .Values.folder }}
52
volumeMounts:
53
{{- if hasKey .Values.storage "code" }}
0 commit comments