mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-13 22:28:27 +00:00
14 lines
189 B
Plaintext
14 lines
189 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# removing debian packaging artifacts
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
echo "I: Adding var/lib/snapd/classic"
|
||
|
|
||
|
PREFIX=binary/boot/filesystem.dir
|
||
|
|
||
|
(cd $PREFIX
|
||
|
install -m755 -d var/lib/snapd/classic
|
||
|
)
|