fix: fix string escape sequences, per warnings
This commit is contained in:
parent
1d2d4697ec
commit
9f441164e7
2 changed files with 9 additions and 9 deletions
|
|
@ -50,8 +50,8 @@ def install(c, version=None, user=None):
|
||||||
c.sudo(f'touch {profile}')
|
c.sudo(f'touch {profile}')
|
||||||
c.sudo(f'chown {user}: {profile}')
|
c.sudo(f'chown {user}: {profile}')
|
||||||
append(c, profile, 'export NVM_DIR="{}"'.format(nvm), **kwargs)
|
append(c, profile, 'export NVM_DIR="{}"'.format(nvm), **kwargs)
|
||||||
append(c, profile, '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"', **kwargs)
|
append(c, profile, '[ -s "$NVM_DIR/nvm.sh" ] && \\. "$NVM_DIR/nvm.sh"', **kwargs)
|
||||||
append(c, profile, '[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"', **kwargs)
|
append(c, profile, '[ -s "$NVM_DIR/bash_completion" ] && \\. "$NVM_DIR/bash_completion"', **kwargs)
|
||||||
|
|
||||||
node = version or 'node'
|
node = version or 'node'
|
||||||
cmd = "bash -l -c 'nvm install {}'".format(node)
|
cmd = "bash -l -c 'nvm install {}'".format(node)
|
||||||
|
|
|
||||||
|
|
@ -154,8 +154,8 @@ def is_win(c):
|
||||||
"""
|
"""
|
||||||
Return True if remote SSH server is running Windows, False otherwise.
|
Return True if remote SSH server is running Windows, False otherwise.
|
||||||
|
|
||||||
The idea is based on echoing quoted text: \*NIX systems will echo quoted
|
The idea is based on echoing quoted text: \\*NIX systems will echo
|
||||||
text only, while Windows echoes quotation marks as well.
|
quoted text only, while Windows echoes quotation marks as well.
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
|
|
@ -170,7 +170,7 @@ def _expand_path(c, path):
|
||||||
Return a path expansion
|
Return a path expansion
|
||||||
|
|
||||||
E.g. ~/some/path -> /home/myuser/some/path
|
E.g. ~/some/path -> /home/myuser/some/path
|
||||||
/user/\*/share -> /user/local/share
|
/user/\\*/share -> /user/local/share
|
||||||
More examples can be found here: http://linuxcommand.org/lc3_lts0080.php
|
More examples can be found here: http://linuxcommand.org/lc3_lts0080.php
|
||||||
|
|
||||||
.. versionchanged:: 1.0
|
.. versionchanged:: 1.0
|
||||||
|
|
@ -207,10 +207,10 @@ def sed(c, filename, before, after, limit='', use_sudo=False, backup='.bak',
|
||||||
<filename>``. Setting ``backup`` to an empty string will, disable backup
|
<filename>``. Setting ``backup`` to an empty string will, disable backup
|
||||||
file creation.
|
file creation.
|
||||||
|
|
||||||
For convenience, ``before`` and ``after`` will automatically escape forward
|
For convenience, ``before`` and ``after`` will automatically
|
||||||
slashes, single quotes and parentheses for you, so you don't need to
|
escape forward slashes, single quotes and parentheses for you, so
|
||||||
specify e.g. ``http:\/\/foo\.com``, instead just using ``http://foo\.com``
|
you don't need to specify e.g. ``http:\\/\\/foo\\.com``, instead
|
||||||
is fine.
|
just using ``http://foo\\.com`` is fine.
|
||||||
|
|
||||||
If ``use_sudo`` is True, will use `sudo` instead of `run`.
|
If ``use_sudo`` is True, will use `sudo` instead of `run`.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue