mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 17:40:12 +00:00
scripts: remove SC2140 disable
It is not needed to split the string like this: ``` a="potentially long string on"\ "multiple lines" ``` but it is better rather to put the '\' inside the string: ``` a="potentially long string on\ multiple lines" ```
This commit is contained in:
5
.github/scripts/macOS/prepare.sh
vendored
5
.github/scripts/macOS/prepare.sh
vendored
@@ -16,10 +16,9 @@ fi
|
||||
export CPATH=/usr/local/include
|
||||
export DYLIBBUNDLER_FLAGS="${DYLIBBUNDLER_FLAGS:+$DYLIBBUNDLER_FLAGS }-s /usr/local/lib"
|
||||
export LIBRARY_PATH=/usr/local/lib
|
||||
# shellcheck disable=SC2140
|
||||
printf "%b" \
|
||||
"CPATH=$CPATH\n"\
|
||||
"LIBRARY_PATH=$LIBRARY_PATH\n" >> "$GITHUB_ENV"
|
||||
"CPATH=$CPATH\n\
|
||||
LIBRARY_PATH=$LIBRARY_PATH\n" >> "$GITHUB_ENV"
|
||||
echo "PKG_CONFIG_PATH=/usr/local/lib/pkgconfig" >> "$GITHUB_ENV"
|
||||
echo "/usr/local/opt/qt/bin" >> "$GITHUB_PATH"
|
||||
echo "DYLIBBUNDLER_FLAGS=$DYLIBBUNDLER_FLAGS" >> "$GITHUB_ENV"
|
||||
|
||||
Reference in New Issue
Block a user