You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
240 B
5 lines
240 B
#!/bin/bash
|
|
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
|
|
|