Skip to content

Instantly share code, notes, and snippets.

@zbeekman
Created February 14, 2015 00:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zbeekman/4fd42f0ae722d50c88a0 to your computer and use it in GitHub Desktop.
Save zbeekman/4fd42f0ae722d50c88a0 to your computer and use it in GitHub Desktop.
#!/bin/bash
# (Replace `$HOME/code` with the location of your projects)
for f in $(find /Users/ibeekman -name node_modules -prune -o -follow -maxdepth 3 -name .travis.yml -print 2>/dev/null); do
(builtin cd "$(dirname $f)" && /usr/local/bin/update_travis_ci_status)
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment