Compare commits

...

2 Commits

Author SHA1 Message Date
Thomas Hobson c92c2d0dcc
Merge pull request #544 from e-sp/fix-piston-bin
bin(piston): Fix ./piston list-pkgs
2023-02-28 14:23:33 +13:00
e-sp 2a5e6a5012 bin(piston): Fix ./piston list-pkgs 2023-02-27 23:54:52 +01:00
1 changed files with 1 additions and 1 deletions

2
piston
View File

@ -78,7 +78,7 @@ case $1 in
clean-pkgs) git clean -fqXd packages ;;
clean-repo) git clean -fqXd repo ;;
list-pkgs) find packages -depth 2 | awk -F/ '$2 && $3{ print $2 "-" $3 }' | column ;;
list-pkgs) find packages -maxdepth 2 | awk -F/ '$2 && $3{ print $2 "-" $3 }' | column ;;
build-pkg)
PKGSLUG="$2-$3"