Skip to content
Snippets Groups Projects

Desktop notification

Merged Hahn Axel (hahn) requested to merge desktop-notify into master
1 file
+ 3
11
Compare changes
  • Side-by-side
  • Inline
+ 3
11
@@ -60,17 +60,9 @@ function doSqliteBackup(){
# echo -n " to $TARGET "
sqlite3 "$DATABASE_FILE" .dump >"${TARGET}"
fetchrc >/dev/null
db._compressDumpfile "${TARGET}"
# $myrc is last returncode - set in fetchrc
if [ $myrc -eq 0 ]; then
echo -n "gzip ... "
compress_file "${TARGET}"
echo "$DATABASE_FILE" >"${META}"
# else
# echo "ERROR occured - no gzip"
fi
ls -l ${TARGET}*
db._compressDumpfile "${TARGET}" && echo "$DATABASE_FILE" >"${META}"
ls -l ${TARGET}*
fi
fi
Loading