Skip to content

Instantly share code, notes, and snippets.

@krizon
Last active October 30, 2015 13:27
Show Gist options
  • Save krizon/b486ecfe7e8152fd716d to your computer and use it in GitHub Desktop.
Save krizon/b486ecfe7e8152fd716d to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
for D in vendor/*; do
if [ -d "${D}" ]; then
if [ "${D}" != "symfony" ]; then
echo "Processing ${D}"
deprecation-detector check ${D}
fi
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment