DEBSOURCES
Skip Quicknav
sources / cppi / 1.18-3 / tests / version-check
1234567
#!/bin/sh # Make sure that we're not running a binary with a different version. case `cppi --version | sed 1q` in *' '$VERSION) ;; *) exit 1;; esac