Skip to content
Snippets Groups Projects
Commit 88c49a60 authored by Ludovico de Nittis's avatar Ludovico de Nittis
Browse files

Merge branch 'wip/dont-force-copy-mode' into 'master'

run-in-steamrt: If run inside Flatpak, don't force copy mode forever

See merge request steamlinuxruntime!24
parents 36e5015c 65732ec1
No related branches found
No related tags found
No related merge requests found
...@@ -241,9 +241,9 @@ if [ -n "$deploy" ]; then ...@@ -241,9 +241,9 @@ if [ -n "$deploy" ]; then
fi fi
fi fi
if [ -e /.flatpak-info ]; then if [ -e /.flatpak-info ] && [ -z "${PRESSURE_VESSEL_COPY_RUNTIME_INTO+set}" ]; then
mkdir -p "${here}/var" mkdir -p "${here}/var"
touch "${here}/var/copy-runtime" export PRESSURE_VESSEL_COPY_RUNTIME_INTO="${here}/var"
fi fi
if [ -e "${here}/var/copy-runtime" ] && [ -z "${PRESSURE_VESSEL_COPY_RUNTIME_INTO+set}" ]; then if [ -e "${here}/var/copy-runtime" ] && [ -z "${PRESSURE_VESSEL_COPY_RUNTIME_INTO+set}" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment