mirror of
1
0
Fork 0

Improve readme wording, == -> is, wrap to 80 characters, use 4 space

indentation
This commit is contained in:
Casey Rodarmor 2016-11-19 16:37:44 -08:00
parent 4bfa3291ba
commit 1a52e42555
2 changed files with 11 additions and 9 deletions

View File

@ -189,7 +189,9 @@ symbolic link should have a relative path.
path: zshrc
```
If the source location is omitted or NULL, dotbot will use the destination instead, without a leading `.` if present. This makes the following three config files equivalent:
If the source location is omitted or set to `null`, Dotbot will use the
basename of the destination, with a leading `.` stripped if present. This makes
the following three config files equivalent:
```yaml
- link:

View File

@ -47,14 +47,14 @@ class Link(dotbot.Plugin):
return success
def _default_source(self, destination, source):
if source == None:
basename = os.path.basename(destination)
if basename.startswith('.'):
return basename[1:]
else:
return basename
else:
return source
if source is None:
basename = os.path.basename(destination)
if basename.startswith('.'):
return basename[1:]
else:
return basename
else:
return source
def _is_link(self, path):
'''