nixpkgs-update/check-attrpath-version-test.sh

17 lines
310 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euxo pipefail
./check-attrpath-version.sh "libgit2_0_25" "0.25.3"
./check-attrpath-version.sh "owncloud90" "9.0.3"
./check-attrpath-version.sh "owncloud-client" "2.4.1"
if ./check-attrpath-version.sh "owncloud90" "9.1.3"
then
echo "fail"
exit 1
fi
echo "All tests passed"