Commit 3ccb0b82 by Toshio Kuratomi

Revert expanding hte tilde in shell plugin until we determine why it's forcing…

Revert expanding hte tilde in shell plugin until we determine why it's forcing fetch down an alternate path
parent cfe9f1c3
......@@ -37,12 +37,12 @@ class ShellModule(object):
return path.endswith('/')
def chmod(self, mode, path):
path = os.path.expanduser(path)
#path = os.path.expanduser(path)
path = pipes.quote(path)
return 'chmod %s %s' % (mode, path)
def remove(self, path, recurse=False):
path = os.path.expanduser(path)
#path = os.path.expanduser(path)
path = pipes.quote(path)
if recurse:
return "rm -rf %s >/dev/null 2>&1" % path
......@@ -62,7 +62,7 @@ class ShellModule(object):
return cmd
def checksum(self, path, python_interp):
path = os.path.expanduser(path)
#path = os.path.expanduser(path)
path = pipes.quote(path)
# The following test needs to be SH-compliant. BASH-isms will
# not work if /bin/sh points to a non-BASH shell.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment