diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-03-19 17:18:51 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-03-19 17:18:51 -0400 |
commit | 93cb6dddc415e481e52bdd5f0b379b7ea811dcf2 (patch) | |
tree | c92f60faa1f6ea895b53b5570072c8e0797d121c /pbs-init | |
parent | 699135c584dfab6473568d470f36b8dddad4a416 (diff) |
fix git adding in pbs-init
Diffstat (limited to 'pbs-init')
-rwxr-xr-x | pbs-init | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -35,7 +35,8 @@ main() { git init touch .pbs-root - git commit -m 'initial commit' .pbs-root + git add .pbs-root + git commit -m 'initial commit' } main "$@" |