Skip to content

Commit

Permalink
bin(piston): Fix ./piston list-pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
e-sp committed Feb 27, 2023
1 parent b179e0b commit 2a5e6a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piston
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 2a5e6a5

Please sign in to comment.