1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-05 20:48:00 +00:00

update readme

This commit is contained in:
deadc0de6
2019-02-27 09:00:07 +01:00
parent 1e6cce903e
commit 58c15ee5b6
2 changed files with 2 additions and 4 deletions

View File

@@ -80,6 +80,8 @@ why [dotdrop](https://github.com/deadc0de6/dotdrop) rocks.
* [Store sensitive dotfiles](#store-sensitive-dotfiles)
* [Symlink dotfiles](#symlink-dotfiles)
* [Config](#config)
* [All dotfiles for a profile](#all-dotfiles-for-a-profile)
* [Include dotfiles from another profile](#include-dotfiles-from-another-profile)
* [Templating](#templating)
* [Available variables](#available-variables)
* [Available methods](#available-methods)

View File

@@ -255,8 +255,6 @@ class Cfg:
self.log.err(msg.format(k))
msg = 'Please modify your config file to: \"trans: {}\"'
self.log.err(msg.format(itstrans_r[0]))
msg = 'see https://github.com/deadc0de6/dotdrop/wiki/transformations#config-error-with-transformation-list' # noqa
self.log.err(msg)
return False
trans_r = self._parse_trans(itstrans_r, read=True)
if not trans_r:
@@ -275,8 +273,6 @@ class Cfg:
self.log.err(msg.format(k))
msg = 'Please modify your config file: \"trans_write: {}\"'
self.log.err(msg.format(itstrans_w[0]))
msg = 'see https://github.com/deadc0de6/dotdrop/wiki/transformations#config-error-with-transformation-list' # noqa
self.log.err(msg)
return False
trans_w = self._parse_trans(itstrans_w, read=False)
if not trans_w: