mirror of
https://github.com/gryf/debian-pkgs.git
synced 2026-02-07 14:45:46 +01:00
11 lines
117 B
Bash
Executable File
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
|