File: check_todo

package info (click to toggle)
libopensync-plugin-kdepim 0.19-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,088 kB
  • ctags: 126
  • sloc: sh: 8,796; cpp: 1,029; makefile: 102
file content (11 lines) | stat: -rwxr-xr-x 250 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

echo "This unit test will empty all tasks from Kde. Do you want to continue?"
echo "[y/N]"
read -n 1 reply
if [ "$reply" != "y" ]
then
        exit 1
fi
export KDE_DEBUG=true
osyncplugin kdepim --type todo --plugindir ../.libs || exit 1