summaryrefslogtreecommitdiff
path: root/dotbot
Commit message (Collapse)AuthorAge
...
* Provide exception information when reading configJoshua Blum2015-04-24
|
* Fix styleAnish Athalye2015-04-24
| | | | Fix formatting of keyword arguments according to PEP 8.
* Add more options for shell commandsAnish Athalye2015-02-03
| | | | | | This commit introduces an extended configuration syntax for shell commands. This syntax allows for specifying whether the stdin, stdout, and stderr streams are enabled.
* Allow nonexistent directories to be cleanedAnish Athalye2015-01-26
| | | | Make nonexistent directories be skipped when cleaning.
* Fix compatibilityAnish Athalye2015-01-26
| | | | | This commit fixes usage of the Singleton metaclass so that it is compatible with both Python 2 and Python 3.
* Clean up codeAnish Athalye2015-01-26
| | | | Fix typos and remove unused code.
* Fix bug with forced links not working in all casesAnish Athalye2014-11-09
| | | | | | | | This commit fixes a bug where forced links did not work on certain types of bad links. Until this fix, forced links only worked if the original was a real file or directory. This commit fixes this, so that the forced link option also works when the original is a broken or incorrect symbolic link.
* Add YAML supportAnish Athalye2014-10-27
| | | | | | Add support for YAML format configuration files. In addition, this commit adds instructions about YAML config files to the README, and it also changes the README to encourage use of YAML instead of JSON.
* Add functionality to create parent directoriesAnish Athalye2014-10-22
| | | | | | | This commit introduces an additional option for extended configuration syntax for linking. It adds the "create" parameter which results in automatically creating a parent directory if necessary before linking a file.
* Add functionality to forcibly link itemsAnish Athalye2014-10-22
| | | | | | | | | | This commit introduces an extended configuration syntax for linking files and directories. Currently, this syntax allows for specifying items to be forcibly linked, overwriting existing files or directories if necessary. The extended configuration syntax was proposed by Travers McInerney <travers@mcinerney.me>.
* Fix whitespace errorAnish Athalye2014-10-17
|
* Clean up codeAnish Athalye2014-08-20
|
* Add keyboard interrupt handlerAnish Athalye2014-07-19
|
* Display better error message when linking failsAnish Athalye2014-07-17
| | | | | | When failing to symbolically linking files, display the names of the files that could not be linked. This makes it easier to troubleshoot the error without having to manually figure out which files failed to link.
* Make Linker check for existence of targetsAnish Athalye2014-07-15
| | | | | | Linker now reports an error when links are configured to point to nonexistent targets. This fixes the old behavior where Linker silently created invalid links.
* Fix source compatibility with Python 3Anish Athalye2014-06-14
| | | | | | | | | | According to PEP 394, `python` should only be used in the shebang line for scripts that are source compatible with both Python 2 and Python 3. In previous versions of Dotbot, on certain systems where `python` referred to `python3`, running Dotbot would throw an exception due to a SyntaxError. This can be fixed by making Dotbot source compatible with both Python 2 and Python 3.
* Add Cleaner executorAnish Athalye2014-06-08
|
* Remove code duplication in executorsAnish Athalye2014-04-24
|
* Initial commitAnish Athalye2014-03-20