diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-02 07:26:39 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-05 12:18:22 +0100 |
commit | 6f535cd391088957731077fe2bfe08d322cab468 (patch) | |
tree | 0ea5291b104cdcd6137b2986809c5c3d03e24f89 | |
parent | d1d1285e9c3ae9d2ed7af1c873c0126bf541223e (diff) |
lib.sh: support multiple arguments in remkdir()
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | include/lib.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/lib.sh b/include/lib.sh index 59676150..87061f2b 100644 --- a/include/lib.sh +++ b/include/lib.sh @@ -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() |