lib.sh: support multiple arguments in remkdir()

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-05-02 07:26:39 +01:00
parent f3ae3dbbbe
commit 15b76bc202
+2 -2
View File
@@ -9,8 +9,8 @@ rmodtool="elf/cbfstool/default/rmodtool"
remkdir()
{
x_ rm -Rf "$1"
x_ mkdir -p "$1"
x_ rm -Rf "$@"
x_ mkdir -p "$@"
}
mkrom_tarball()