Skip to content

Commit

Permalink
Updating dotbot
Browse files Browse the repository at this point in the history
  • Loading branch information
triwats committed Jun 16, 2024
1 parent 7d1f040 commit 515f7ce
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion dotbot
Submodule dotbot updated 95 files
+0 −3 .editorconfig
+57 −0 .github/workflows/ci.yml
+7 −0 .gitignore
+0 −26 .travis.yml
+52 −0 CHANGELOG.md
+35 −0 CONTRIBUTING.md
+1 −1 LICENSE.md
+184 −65 README.md
+11 −8 bin/dotbot
+1 −1 dotbot/__init__.py
+4 −0 dotbot/__main__.py
+119 −44 dotbot/cli.py
+8 −4 dotbot/config.py
+16 −6 dotbot/context.py
+50 −20 dotbot/dispatcher.py
+1 −1 dotbot/messenger/__init__.py
+8 −8 dotbot/messenger/color.py
+1 −1 dotbot/messenger/level.py
+14 −18 dotbot/messenger/messenger.py
+9 −8 dotbot/plugin.py
+1 −0 dotbot/plugins/__init__.py
+37 −22 dotbot/plugins/clean.py
+60 −0 dotbot/plugins/create.py
+160 −112 dotbot/plugins/link.py
+61 −52 dotbot/plugins/shell.py
+1 −0 dotbot/util/__init__.py
+34 −0 dotbot/util/common.py
+0 −5 dotbot/util/compat.py
+22 −18 dotbot/util/module.py
+1 −0 dotbot/util/singleton.py
+4 −4 dotbot/util/string.py
+1 −1 lib/pyyaml
+17 −0 pyproject.toml
+0 −2 setup.cfg
+37 −51 setup.py
+0 −5 test/.editorconfig
+0 −1 test/.gitignore
+0 −52 test/README.md
+0 −25 test/Vagrantfile
+0 −128 test/driver-lib.bash
+0 −52 test/test
+0 −62 test/test-lib.bash
+0 −81 test/test_travis
+0 −16 test/tests/clean-environment-variable-expansion.bash
+0 −19 test/tests/clean-missing.bash
+0 −8 test/tests/clean-nonexistent.bash
+0 −18 test/tests/clean-outside-force.bash
+0 −18 test/tests/clean-outside.bash
+0 −8 test/tests/config-blank.bash
+0 −7 test/tests/config-empty.bash
+0 −20 test/tests/config-json-tabs.bash
+0 −20 test/tests/config-json.bash
+0 −59 test/tests/defaults.bash
+0 −62 test/tests/find-python-executable.bash
+0 −26 test/tests/link-default-source.bash
+0 −17 test/tests/link-environment-user-expansion-target.bash
+0 −20 test/tests/link-environment-variable-expansion-source-extended.bash
+0 −18 test/tests/link-environment-variable-expansion-source.bash
+0 −25 test/tests/link-environment-variable-expansion-target.bash
+0 −18 test/tests/link-environment-variable-unset.bash
+0 −24 test/tests/link-force-leaves-when-nonexistent.bash
+0 −21 test/tests/link-force-overwrite-symlink.bash
+0 −45 test/tests/link-glob-ambiguous.bash
+0 −31 test/tests/link-glob-multi-star.bash
+0 −47 test/tests/link-glob.bash
+0 −51 test/tests/link-if.bash
+0 −18 test/tests/link-leaves-file.bash
+0 −36 test/tests/link-relative.bash
+0 −20 test/tests/link-relink-leaves-file.bash
+0 −21 test/tests/link-relink-overwrite-symlink.bash
+0 −32 test/tests/link-relink-relative-leaves-file.bash
+0 −29 test/tests/plugin-dir.bash
+0 −17 test/tests/plugin-disable-builtin.bash
+0 −28 test/tests/plugin.bash
+0 −11 test/tests/shell-allow-stdout.bash
+0 −22 test/tests/shell-compact-stdout.bash
+0 −9 test/tests/shell-disables-stdout.bash
+0 −14 test/tests/shell-override-default.bash
+0 −30 test/tests/shell-quiet.bash
+0 −29 test/tests/shim.bash
+317 −0 tests/conftest.py
+27 −0 tests/dotbot_plugin_directory.py
+32 −0 tests/dotbot_plugin_file.py
+45 −0 tests/test_bin_dotbot.py
+136 −0 tests/test_clean.py
+172 −0 tests/test_cli.py
+36 −0 tests/test_config.py
+55 −0 tests/test_create.py
+967 −0 tests/test_link.py
+25 −0 tests/test_noop.py
+261 −0 tests/test_shell.py
+49 −0 tests/test_shim.py
+22 −0 tools/git-submodule/install.ps1
+21 −0 tools/hg-subrepo/install.ps1
+76 −0 tox.ini
2 changes: 0 additions & 2 deletions gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,3 @@
heading = true
lineNumber = true
extendedRegexp = true
[pull]
ff = true

0 comments on commit 515f7ce

Please sign in to comment.