File: helical

package info (click to toggle)
python-transmission-rpc 7.0.11-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 440 kB
  • sloc: python: 2,605; sh: 9; makefile: 4
file content (15 lines) | stat: -rwxr-xr-x 225 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
#------------
# Testing CLI
#------------
set -e

cd "$AUTOPKGTEST_TMP"

if ! helical -h 2>&1 > /dev/null; then
    echo "ERROR, helical is not running"
    exit 1
else
    echo "OK: helical is running"
fi
exit 0