diff options
author | Anton Kling <anton@kling.gg> | 2023-10-30 23:34:32 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-10-31 00:18:38 +0100 |
commit | 352c4542e4064e821d30db875e82904ef44b1c92 (patch) | |
tree | 6d40dd0fb7cf6dfd6765b83b6e8c505bf4a471c7 /meta/new.sh | |
parent | 6c0e142409d57c11fc03bcbc3d79a4d646f885ff (diff) |
Meta: Fix build scripts to work on debian
Diffstat (limited to 'meta/new.sh')
-rwxr-xr-x | meta/new.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/new.sh b/meta/new.sh index deb0774..24d1b1d 100755 --- a/meta/new.sh +++ b/meta/new.sh @@ -3,6 +3,8 @@ # completly reset it scriptdir="$(dirname "$0")" cd "$scriptdir" +# Include /sbin to the PATH since mkfs.ext2 exists only in sbin on debian :/ +export PATH="$PATH:/sbin" rm ext2.img mkfs.ext2 ext2.img 20M ./sync.sh |