summaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-01-04 18:03:04 +0000
committerLars Wirzenius <liw@liw.fi>2021-01-04 18:03:04 +0000
commit678e65c57ae983ef66d16e92965814b0f3f0d73f (patch)
tree260f2edd09047de5843a168ce59f284ac3445ce7 /check
parent6c00201a0aaf75071388981591d76bebdc7b1f03 (diff)
parent34a9fc7cf754552b02b194f7e1186adc9414a623 (diff)
downloadobnam2-678e65c57ae983ef66d16e92965814b0f3f0d73f.tar.gz
Merge branch 'checksum' into 'main'
Checksum See merge request larswirzenius/obnam!61
Diffstat (limited to 'check')
-rwxr-xr-xcheck9
1 files changed, 0 insertions, 9 deletions
diff --git a/check b/check
index 73a02b7..65514cc 100755
--- a/check
+++ b/check
@@ -21,15 +21,6 @@ got_cargo_cmd()
cargo --list | grep " $1 " > /dev/null
}
-# Check version numbers in Cargo.toml vs debian/changelog
-v1="$(awk '/^version/ { print $NF }' Cargo.toml | tr -d '"')"
-v2="$(dpkg-parsechangelog -SVersion | sed 's/-.*$//')"
-if [ "$v1" != "$v2" ]
-then
- echo "Version from Carog.toml ($v1) and debian/changelog ($v2) don't match" 1>&2
- exit 1
-fi
-
cargo build --all-targets $quiet
got_cargo_cmd clippy && cargo clippy $quiet
got_cargo_cmd fmt && cargo fmt -- --check