We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0ec4df commit cc92bdaCopy full SHA for cc92bda
.github/workflows/rust.yml
@@ -153,7 +153,8 @@ jobs:
153
# [FIX] Set the pkg-config path for GNU cross-compilation
154
if [[ $TARGET == 'aarch64-unknown-linux-gnu' ]]; then
155
export PKG_CONFIG_PATH="/usr/lib/aarch64-linux-gnu/pkgconfig"
156
- elif [[ $TARGET == *arm*-linux-gnueabihf' ]]; then
+ # [SYNTAX FIX] Removed the stray single quote from the end of the line
157
+ elif [[ $TARGET == *arm*-linux-gnueabihf ]]; then
158
# This covers both 'armv7' and 'arm' targets
159
export PKG_CONFIG_PATH="/usr/lib/arm-linux-gnueabihf/pkgconfig"
160
fi
0 commit comments