tinyramfs: minor changes

This commit is contained in:
illiliti 2021-08-15 10:38:07 +03:00
parent 760ecd29d6
commit c1c3457fbd
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ init_base()
# https://shellcheck.net/wiki/SC2015
# shellcheck disable=2015
[ "$debug" ] && set -x || trap 'rm -rf $tmpdir' EXIT INT
[ "$debug" ] && set -x || trap 'rm -rf "$tmpdir"' EXIT INT
(
cd "$tmpdir"
@ -47,7 +47,7 @@ init_base()
ln -s ../run/lock var/lock
ln -s bin usr/sbin
ln -s lib/tinyramfs/init.sh init
ln -s lib/tinyramfs/init.sh init
ln -s ../lib/tinyramfs/helper.sh bin/helper
)