diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-05 23:50:40 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-05 23:50:40 -0500 |
commit | 93bbe2060e7b78f7f21b238cb176ab2fbbc79f04 (patch) | |
tree | f167eb599939f0c43e12f62780903cae87e0b636 | |
parent | 703e8cc992ae7543b051fc3de355cddb779462eb (diff) | |
download | scripts-93bbe2060e7b78f7f21b238cb176ab2fbbc79f04.tar.gz scripts-93bbe2060e7b78f7f21b238cb176ab2fbbc79f04.zip |
Fix commit_all_submodules script
-rwxr-xr-x | commit_all_submodules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commit_all_submodules b/commit_all_submodules index 0d53c18..cddb52e 100755 --- a/commit_all_submodules +++ b/commit_all_submodules @@ -18,6 +18,6 @@ fi read -p "Enter your commit message []: " -e commitmessage -git submodule foreach "git commit -a -m \'$commitmessage\'" -git submodule foreach "sed -i \'s/system@scm\.trinitydesktop\.org/$gituser@scm\.trinitydesktop\.org/g\' .git/config" -git submodule foreach "git push origin master" +git submodule foreach "git commit -a -m \"$commitmessage\" || true" +git submodule foreach "sed -i \"s/system@scm\.trinitydesktop\.org/$gituser@scm\.trinitydesktop\.org/g\" .git/config" +git submodule foreach "git push origin master || true" |