1
0
mirror of https://github.com/gryf/debian-pkgs.git synced 2026-02-07 14:45:46 +01:00
Files
debian-pkgs/build.sh
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