From 49c0b930f925639f4cde2cbd778bf1b7b9e9b71e Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Sat, 6 Jun 2020 19:53:10 +1000 Subject: [PATCH] cleaner package names --- buildall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildall.sh b/buildall.sh index a3117cd..95211d3 100755 --- a/buildall.sh +++ b/buildall.sh @@ -1,5 +1,5 @@ #!/bin/bash -for dir in $(find -maxdepth 1 -not -path '*/\.*' -not -path '\.' -type d); do +for dir in $(find -maxdepth 1 -not -path '*/\.*' -not -path '\.' -type d | cut -d '/' -f 2); do echo lua makepkg.lua "$dir" "$1" "$(git rev-parse --short HEAD)" lua makepkg.lua "$dir" "$1" "$(git rev-parse --short HEAD)" done