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

runtimes: Don't force directories to be non-empty


We no longer deploy the runtimes directly via Steampipe (which doesn't
preserve empty directories, a bit like git) because it isn't designed
for large numbers of very small files. Instead, they go out as a tarball
that is unpacked on end-user systems, so this workaround is no longer
necessary.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 2e0983ac
No related branches found
No related tags found
No related merge requests found
......@@ -73,11 +73,6 @@ post_script: |
test -e /usr/i686-pc-linux-gnu/lib/ld-linux.so.2
fi
platform:
post_script: |
set -eux
find /usr -type d -empty -print0 | xargs -0 -t -I '{}' -- touch '{}/.exists'
sdk:
add_packages_multiarch:
- steamrt-container-host-compat
......
......@@ -84,7 +84,6 @@ post_script: |
platform:
post_script: |
set -eux
find /usr -type d -empty -print0 | xargs -0 -t -I '{}' -- touch '{}/.exists'
if [ -x /usr/bin/python3.5 ] && ! [ -e /usr/bin/python3 ]; then
ln -fns python3.5 /usr/bin/python3
......
......@@ -78,11 +78,6 @@ post_script: |
test -e /usr/i686-pc-linux-gnu/lib/ld-linux.so.2
fi
platform:
post_script: |
set -eux
find /usr -type d -empty -print0 | xargs -0 -t -I '{}' -- touch '{}/.exists'
sdk:
add_packages_multiarch:
- steamrt-libdebug:
......
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