summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAnish Athalye <me@anishathalye.com>2018-05-30 09:41:55 -0400
committerAnish Athalye <me@anishathalye.com>2018-05-30 10:23:53 -0400
commit30caaf27803a9529e1809504a39c514c80b859c2 (patch)
tree11d8fd55a35e7a9c24a19e5ff4fe3d20b897afb9 /test
parent8afca63f6532578b40bbc166ed69b1125623e5c1 (diff)
Add PyPI package
This patch also makes the '-d' argument optional, with the base directory defaulting to the directory of the configuration file.
Diffstat (limited to 'test')
-rw-r--r--test/test-lib.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-lib.bash b/test/test-lib.bash
index 7b5e9ca..e4d9a4e 100644
--- a/test/test-lib.bash
+++ b/test/test-lib.bash
@@ -48,14 +48,14 @@ initialize() {
run_dotbot() {
(
cat > "${DOTFILES}/${INSTALL_CONF}"
- ${DOTBOT_EXEC} -d "${DOTFILES}" -c "${DOTFILES}/${INSTALL_CONF}" "${@}"
+ ${DOTBOT_EXEC} -c "${DOTFILES}/${INSTALL_CONF}" "${@}"
)
}
run_dotbot_json() {
(
cat > "${DOTFILES}/${INSTALL_CONF_JSON}"
- ${DOTBOT_EXEC} -d "${DOTFILES}" -c "${DOTFILES}/${INSTALL_CONF_JSON}" "${@}"
+ ${DOTBOT_EXEC} -c "${DOTFILES}/${INSTALL_CONF_JSON}" "${@}"
)
}