mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-07-30 10:04:04 +00:00
Imported using git-ubuntu import. Changelog parent: 2848624193ee7c9fc50f098382c6f58e64a94231 New changelog entries: * Fix security mirror sources.list entries for non-x86 architectures.
14 lines
187 B
Bash
Executable File
14 lines
187 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# removing debian packaging artifacts
|
|
|
|
set -ex
|
|
|
|
echo "I: Adding var/lib/snapd/hostfs"
|
|
|
|
PREFIX=binary/boot/filesystem.dir
|
|
|
|
(cd $PREFIX
|
|
install -m755 -d var/lib/snapd/hostfs
|
|
)
|