mirror of
https://github.com/ryantm/nixpkgs-update.git
synced 2024-12-17 16:31:47 +03:00
17 lines
310 B
Bash
Executable File
17 lines
310 B
Bash
Executable File
#!/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"
|