File: cli

package info (click to toggle)
python-json-pointer 2.4-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 212 kB
  • sloc: python: 598; makefile: 163; sh: 19
file content (15 lines) | stat: -rwxr-xr-x 257 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 utilities
#----------------------
set -e

cd "$AUTOPKGTEST_TMP"

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