Skip to content
Snippets Groups Projects
Commit 55378b68 authored by Simon McVittie's avatar Simon McVittie
Browse files

_v2-entry-point: Fix a shellcheck warning


In principle ${STEAM_RUNTIME} could include wildcards, which we want
taken literally.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent a539c42a
No related branches found
No related tags found
1 merge request!72Add steam-runtime-launcher-service integration
This commit is part of merge request !72. Comments created here will be created in the context of that merge request.
......@@ -250,7 +250,7 @@ case "${STEAM_RUNTIME-}" in
if [ "${path}" == "${STEAM_RUNTIME}" ]; then
# path is exactly the ${STEAM_RUNTIME}; ignore
continue
elif [ "${path#${STEAM_RUNTIME}/}" != "${path}" ]; then
elif [ "${path#"${STEAM_RUNTIME}/"}" != "${path}" ]; then
# path is ${STEAM_RUNTIME}/...; ignore
continue
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment