PsychOSPackages/buildall.sh

6 lines
222 B
Bash
Raw Normal View History

2020-06-06 18:37:32 +10:00
#!/bin/bash
for dir in $(find -maxdepth 1 -not -path '*/\.*' -not -path '\.' -type d); do
echo lua makepkg.lua "$dir" "$1" "$(git rev-parse --short HEAD)"
lua makepkg.lua "$dir" "$1" "$(git rev-parse --short HEAD)"
done