We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c8dca5 commit c2a04ddCopy full SHA for c2a04dd
.pipelines/templates/artifact-storage.steps.yaml
@@ -34,12 +34,13 @@ steps:
34
set -x
35
DEFS_FOUND=$(az role definition list --name "$ACNCI_BUILDUSER_ROLE_NAME" --custom-role-only -ojson | jq length)
36
37
+ DEF=$(cat ./mi-build-role.json | jq -rc '.')
38
if [[ $DEFS_FOUND < 1 ]]; then
39
az role definition create \
- --role-definition '"$(cat ./mi-build-role.json)"'
40
+ --role-definition '"'
41
else
42
az role definition update \
- --role-definition '"$(cat./mi-build-role.json)"'
43
+ --role-definition "$(cat./mi-build-role.json)"
44
fi
45
46
0 commit comments