projects
/
matthijs
/
upstream
/
backupninja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7671177
)
fixed bug where config files were run in order of
author
Elijah Saxon
<elijah@riseup.net>
Fri, 8 Apr 2005 17:02:52 +0000
(17:02 +0000)
committer
Elijah Saxon
<elijah@riseup.net>
Fri, 8 Apr 2005 17:02:52 +0000
(17:02 +0000)
time created instead of in numeric order.
backupninja
patch
|
blob
|
history
diff --git
a/backupninja
b/backupninja
index b7d4a149e2e73683745e92f224faf899abd1c71f..ac504d605af123ae0f471f9f3e2ce457e511d90d 100755
(executable)
--- a/
backupninja
+++ b/
backupninja
@@
-429,7
+429,7
@@
errormsg=""
if [ "$singlerun" ]; then
files=$singlerun
else
- files=`find $configdirectory -mindepth 1 `
+ files=`find $configdirectory -mindepth 1
| sort -n
`
fi
for file in $files; do