Fixed major flushing to disk issue.

This commit is contained in:
Maxim Stewart
2016-11-06 20:12:05 -06:00
parent 1252ec447f
commit 0aa272bb90
5 changed files with 20 additions and 8 deletions

12
src/debs/build.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
function main() {
for i in `ls`; do
if [[ -d "${i}" ]]; then
dpkg --build "${i}"
else
echo "Not a dir."
fi
done
}
main;