summaryrefslogtreecommitdiff
path: root/tools
Commit message (Collapse)AuthorAge
* Make install script less noisyAnish Athalye2018-06-05
| | | | | Before this patch, the `git submodule sync` line would always print to stdout.
* Point PyYAML dependency to official repositoryAnish Athalye2018-05-24
| | | | | | | | | | | | | | | | Previously, PyYAML was hosted on BitBucket, so we had a mirror of the repo on GitHub. Now, official hosting has moved to GitHub, so we can point to the official repository instead. Thanks to Marco A. Feliu <marco.feliu@nianet.org> for pointing this out. This patch also updates the install shim to update submodule URLs. To preserve the functionality of earlier Dotbot versions, we will need to maintain 'https://github.com/anishathalye/pyyaml'. Because old versions of the install shim used with new Dotbot versions will not update submodule URLs, we will need to keep the old repository in sync with the upstream repository as we upgrade PyYAML versions. This patch also upgrades the dependency to PyYAML 3.12.
* Add Mercurial install scriptAnish Athalye2015-05-22
|
* 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.
* Fix bug in install scriptAnish Athalye2014-09-15
| | | | Do not treat unbound variables as an error.
* Make install script saferAnish Athalye2014-08-18
| | | | | Call `set -e` to make the script exit if any command fails and `set -u` to treat unset variables as an error.
* Fix bug in install scriptAnish Athalye2014-08-05
| | | | Double quote array expansion to prevent breaking on spaces.
* Fix portability for install scriptAnish Athalye2014-08-03
|
* Add example install scriptAnish Athalye2014-03-20