Created
February 14, 2015 00:32
-
-
Save zbeekman/2e6189e22e8ce1e1538b 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
#!/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