File: version

package info (click to toggle)
rdiff-backup 2.2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,640 kB
  • sloc: python: 24,129; javascript: 9,512; sh: 1,230; ansic: 580; makefile: 36
file content (11 lines) | stat: -rw-r--r-- 146 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -ex

if rdiff-backup --version | grep -q 'DEV'
then
  echo "Error: Version is 'DEV'"
  exit 1
else
  echo "Version test passed"
fi