This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
hyde
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
forgot to add -- to prevent problems w/ files that start w/ - or --
main
John-Mark Gurney
8 years ago
parent
f37d3d2d34
commit
c8a8aafe08
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
hyde/ext/publishers/dvcs.py
+ 1
- 1
hyde/ext/publishers/dvcs.py
View File
@@ -61,7 +61,7 @@ class Git(DVCS):
"""
def add(self, path="."):
cmd = Popen('git add'.split() + [ path ],
cmd = Popen('git add
--
'.split() + [ path ],
cwd=str(self.path), stdout=PIPE)
cmdresult = cmd.communicate()[0]
if cmd.returncode:
Write
Preview
Loading…
Cancel
Save