Skip to content

Commit

Permalink
autogen/rust: remove Cargo.lock
Browse files Browse the repository at this point in the history
Remove Cargo.lock to avoid issues when updating Cargo.toml
  • Loading branch information
victorjulien committed Jan 30, 2018
1 parent 6e82df2 commit 6f7e24d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,9 @@ else
exit 1
fi;
autoreconf -fv --install || exit 1
if which cargo > /dev/null; then
if [ -f rust/Cargo.lock ] ; then
rm -f rust/Cargo.lock
fi
fi;
echo "You can now run \"./configure\" and then \"make\"."

0 comments on commit 6f7e24d

Please sign in to comment.