Created
May 5, 2014 09:37
-
-
Save peavers/d7aae7fc1e63fd08a3c4 to your computer and use it in GitHub Desktop.
Updates local .lock file and commits it to git.
This file contains 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 | |
git fetch | |
composer update | |
git add composer.* | |
git commit -m 'auto update script' | |
git push -u origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment