mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 20:57:29 +00:00
14 lines
187 B
Bash
14 lines
187 B
Bash
#!/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
|
|
)
|