Skip to content

Commit c2a283e

Browse files
committed
Set MANAGE_SUDO to no in build scripts to disable sudo management
1 parent 9e3d470 commit c2a283e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
shell: bash
2222
run: |
2323
# Sourcing so we get the pipefail propagate.
24-
(set -euo pipefail ; . gnustep-web-install) | tee /tmp/gs-build.log
24+
(set -euo pipefail ; export MANAGE_SUDO=no ; . gnustep-web-install) | tee /tmp/gs-build.log
2525
# We should process the log here to see if we can recognize critical
2626
# errors.
2727
@@ -49,7 +49,7 @@ jobs:
4949
shell: bash
5050
run: |
5151
# Sourcing so we get the pipefail propagate.
52-
(set -euo pipefail ; . gnustep-web-install-dev) | tee /tmp/gs-build.log
52+
(set -euo pipefail ; export MANAGE_SUDO=no ; . gnustep-web-install-dev) | tee /tmp/gs-build.log
5353
# We should process the log here to see if we can recognize critical
5454
# errors.
5555

0 commit comments

Comments
 (0)