File: check_event

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 (12 lines) | stat: -rwxr-xr-x 253 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

echo "This unit test will empty all events 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 event --plugindir ../.libs || exit 1