Skip to content

Commit cc92bda

Browse files
Update rust.yml
1 parent f0ec4df commit cc92bda

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@ jobs:
153153
# [FIX] Set the pkg-config path for GNU cross-compilation
154154
if [[ $TARGET == 'aarch64-unknown-linux-gnu' ]]; then
155155
export PKG_CONFIG_PATH="/usr/lib/aarch64-linux-gnu/pkgconfig"
156-
elif [[ $TARGET == *arm*-linux-gnueabihf' ]]; then
156+
# [SYNTAX FIX] Removed the stray single quote from the end of the line
157+
elif [[ $TARGET == *arm*-linux-gnueabihf ]]; then
157158
# This covers both 'armv7' and 'arm' targets
158159
export PKG_CONFIG_PATH="/usr/lib/arm-linux-gnueabihf/pkgconfig"
159160
fi

0 commit comments

Comments
 (0)