Skip to content

Commit e8becf6

Browse files
committed
fix(ci): use sudo to install protobuf
1 parent 8959490 commit e8becf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/make-plugin-mac-os.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
./autogen.sh
2727
./configure
2828
make -j$(nproc)
29-
make install
29+
sudo make install
3030
- name: Remove dynamite dependencies (similar to `-static` on linux)
31-
run: rm /usr/local/lib/libproto*.dylib
31+
run: sudo rm /usr/local/lib/libproto*.dylib
3232
- name: make
3333
run: make clean && make plugin
3434
- name: move

0 commit comments

Comments
 (0)