Skip to content

Commit 3c09944

Browse files
committed
fix(build.yaml): correct unzip command syntax in build workflow
The unzip command was failing due to incorrect syntax. The '-o' option was misplaced, causing the command to fail. This commit corrects the syntax, ensuring the command runs successfully.
1 parent 578e9ef commit 3c09944

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
VERSION=33.1
4848
if ! protoc --version 2>/dev/null | grep -q "$VERSION"; then
4949
wget https://github.com/protocolbuffers/protobuf/releases/download/v${VERSION}/protoc-${VERSION}-linux-x86_64.zip
50-
unzip protoc-${VERSION}-linux-x86_64.zip -o -d ~/.local
50+
unzip -o protoc-${VERSION}-linux-x86_64.zip -d ~/.local
5151
fi
5252
export PATH="$PATH:$HOME/.local/bin"
5353

0 commit comments

Comments
 (0)