Skip to content

Instantly share code, notes, and snippets.

@meatballhat
Last active October 12, 2016 18:25
Show Gist options
  • Save meatballhat/99bf459b46b61bd0b45085efdd08af06 to your computer and use it in GitHub Desktop.
Save meatballhat/99bf459b46b61bd0b45085efdd08af06 to your computer and use it in GitHub Desktop.
#!/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