Add script to check if lockfile was changed

This commit is contained in:
Manish Goregaokar 2015-11-06 00:28:19 +05:30
parent 45f07ec320
commit 9b02531d12

4
etc/ci/lockfile_changed.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
diff=$(git diff -- */*/Cargo.lock)
echo "$diff"
[[ ! $diff ]]