diff options
author | Nikias Bassen | 2019-12-09 01:38:59 +0100 |
---|---|---|
committer | Nikias Bassen | 2019-12-09 01:38:59 +0100 |
commit | 2d5a1bb885ef88d078f91fb956be4750f5dca46c (patch) | |
tree | d5d2bd7b11d77eb2c09c8104118a424acb517ad9 /.github/workflows | |
parent | 408badefd1c1262822fe3a492852aebb17ec9c25 (diff) | |
download | libplist-2d5a1bb885ef88d078f91fb956be4750f5dca46c.tar.gz libplist-2d5a1bb885ef88d078f91fb956be4750f5dca46c.tar.bz2 |
[github actions] Update build workflow to not run brew as root for macOS
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 819c085..ac748a7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: if test -x "`which port`"; then sudo port install libtool autoconf automake cython else - sudo brew install libtool autoconf automake cython + brew install libtool autoconf automake cython fi else echo "$RUNNER_OS not supported" |