mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 10:14:13 +08:00
ci: Fix a minor issue in prepare-artifacts.sh script
bash is whitespace sensitive. https://github.com/koalaman/shellcheck/wiki/SC1020 This was noticed from the logs of a CI job https://gitlab.freedesktop.org/mesa/mesa/-/jobs/13158779 There was no fallout from this bug as not having this variable defined leads to the right behavior, and defining it to 1 leads to a error which consequently also leads to the right behaviour. Signed-off-by: Rohan Garg <rohan.garg@collabora.com> Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12562>
This commit is contained in:
parent
9df9fe7dfa
commit
a6a89aaa2f
@ -18,7 +18,7 @@ if [ -n "$CROSS" ]; then
|
||||
else
|
||||
STRIP="strip"
|
||||
fi
|
||||
if [ -z "$ARTIFACTS_DEBUG_SYMBOLS"]; then
|
||||
if [ -z "$ARTIFACTS_DEBUG_SYMBOLS" ]; then
|
||||
find install -name \*.so -exec $STRIP {} \;
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user