1
0
mirror of https://github.com/gryf/debian-pkgs.git synced 2026-04-25 15:21:26 +02:00
Files
2018-04-22 17:22:14 +01:00

11 lines
117 B
Bash
Executable File

#!/bin/bash
if [ "$1" == "clean" ]; then
rm -fr *deb
exit 0;
fi
for fname in recipies/*sh; do
$fname
done