Last active
October 12, 2016 18:25
-
-
Save meatballhat/99bf459b46b61bd0b45085efdd08af06 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# precise trusty APT package version comparison wheeee | |
for pkg in $(grep -v :i386 ubuntu-precise); do | |
if ./bin/travis-compare-package-versions "${pkg}" precise trusty &>/dev/null; then | |
echo "same: ${pkg}" | |
else | |
echo "diff: ${pkg}" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment