Merge branch 'ronalabraham/patch-1'
This commit is contained in:
commit
8454021d66
2 changed files with 5 additions and 5 deletions
|
@ -160,11 +160,11 @@ Available extended configuration parameters:
|
||||||
|
|
||||||
| Link Option | Explanation |
|
| Link Option | Explanation |
|
||||||
| -- | -- |
|
| -- | -- |
|
||||||
| `path` | The target for the symlink, the same as in the shortcut syntax (default:null, automatic (see below)) |
|
| `path` | The source for the symlink, the same as in the shortcut syntax (default:null, automatic (see below)) |
|
||||||
| `create` | When true, create parent directories to the link as needed. (default:false) |
|
| `create` | When true, create parent directories to the link as needed. (default:false) |
|
||||||
| `relink` | Removes the old target if it's a symlink (default:false) |
|
| `relink` | Removes the old target if it's a symlink (default:false) |
|
||||||
| `force` | Force removes the old target, file or folder, and forces a new link (default:false) |
|
| `force` | Force removes the old target, file or folder, and forces a new link (default:false) |
|
||||||
| `relative` | Use a relative path when creating the symlink (default:false, absolute links) |
|
| `relative` | Use a relative path to the source when creating the symlink (default:false, absolute links) |
|
||||||
| `glob` | Treat a `*` character as a wildcard, and perform link operations on all of those matches (default:false) |
|
| `glob` | Treat a `*` character as a wildcard, and perform link operations on all of those matches (default:false) |
|
||||||
| `if` | Execute this in your `$SHELL` and only link if it is successful. |
|
| `if` | Execute this in your `$SHELL` and only link if it is successful. |
|
||||||
|
|
||||||
|
|
|
@ -84,7 +84,7 @@ class Link(dotbot.Plugin):
|
||||||
success &= self._create(destination)
|
success &= self._create(destination)
|
||||||
if not self._exists(os.path.join(self._context.base_directory(), path)):
|
if not self._exists(os.path.join(self._context.base_directory(), path)):
|
||||||
success = False
|
success = False
|
||||||
self._log.warning('Nonexistent target %s -> %s' %
|
self._log.warning('Nonexistent source %s -> %s' %
|
||||||
(destination, path))
|
(destination, path))
|
||||||
continue
|
continue
|
||||||
if force or relink:
|
if force or relink:
|
||||||
|
@ -227,10 +227,10 @@ class Link(dotbot.Plugin):
|
||||||
# again, we use absolute_source to check for existence
|
# again, we use absolute_source to check for existence
|
||||||
elif not self._exists(absolute_source):
|
elif not self._exists(absolute_source):
|
||||||
if self._is_link(link_name):
|
if self._is_link(link_name):
|
||||||
self._log.warning('Nonexistent target %s -> %s' %
|
self._log.warning('Nonexistent source %s -> %s' %
|
||||||
(link_name, source))
|
(link_name, source))
|
||||||
else:
|
else:
|
||||||
self._log.warning('Nonexistent target for %s : %s' %
|
self._log.warning('Nonexistent source for %s : %s' %
|
||||||
(link_name, source))
|
(link_name, source))
|
||||||
else:
|
else:
|
||||||
self._log.lowinfo('Link exists %s -> %s' % (link_name, source))
|
self._log.lowinfo('Link exists %s -> %s' % (link_name, source))
|
||||||
|
|
Loading…
Reference in a new issue