Skip to content

Commit 43c25c7

Browse files
committed
Fix instructions for installing protobuf-compiler
On Debian/Ubuntu need to sudo apt-get commands.
1 parent 2cbf80f commit 43c25c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generate_proto.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cd "$PROJECT_ROOT"
1212
if ! command -v protoc &> /dev/null; then
1313
echo "Error: protoc is not installed"
1414
echo "Install it with:"
15-
echo " apt-get install protobuf-compiler # Debian/Ubuntu"
15+
echo " sudo apt-get install protobuf-compiler # Debian/Ubuntu"
1616
echo " brew install protobuf # macOS"
1717
exit 1
1818
fi

0 commit comments

Comments
 (0)