Fixed major flushing to disk issue.
This commit is contained in:
12
src/debs/build.sh
Normal file
12
src/debs/build.sh
Normal 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;
|
Reference in New Issue
Block a user