batchfetch 1.1.4__tar.gz → 1.1.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. {batchfetch-1.1.4/batchfetch.egg-info → batchfetch-1.1.5}/PKG-INFO +1 -1
  2. {batchfetch-1.1.4 → batchfetch-1.1.5}/batchfetch/batchfetch_git.py +3 -4
  3. {batchfetch-1.1.4 → batchfetch-1.1.5/batchfetch.egg-info}/PKG-INFO +1 -1
  4. {batchfetch-1.1.4 → batchfetch-1.1.5}/setup.py +1 -1
  5. {batchfetch-1.1.4 → batchfetch-1.1.5}/.gitignore +0 -0
  6. {batchfetch-1.1.4 → batchfetch-1.1.5}/LICENSE +0 -0
  7. {batchfetch-1.1.4 → batchfetch-1.1.5}/README.md +0 -0
  8. {batchfetch-1.1.4 → batchfetch-1.1.5}/batchfetch/__init__.py +0 -0
  9. {batchfetch-1.1.4 → batchfetch-1.1.5}/batchfetch/batchfetch_base.py +0 -0
  10. {batchfetch-1.1.4 → batchfetch-1.1.5}/batchfetch/batchfetch_cli.py +0 -0
  11. {batchfetch-1.1.4 → batchfetch-1.1.5}/batchfetch/helpers.py +0 -0
  12. {batchfetch-1.1.4 → batchfetch-1.1.5}/batchfetch.egg-info/SOURCES.txt +0 -0
  13. {batchfetch-1.1.4 → batchfetch-1.1.5}/batchfetch.egg-info/dependency_links.txt +0 -0
  14. {batchfetch-1.1.4 → batchfetch-1.1.5}/batchfetch.egg-info/entry_points.txt +0 -0
  15. {batchfetch-1.1.4 → batchfetch-1.1.5}/batchfetch.egg-info/requires.txt +0 -0
  16. {batchfetch-1.1.4 → batchfetch-1.1.5}/batchfetch.egg-info/top_level.txt +0 -0
  17. {batchfetch-1.1.4 → batchfetch-1.1.5}/run_tests.sh +0 -0
  18. {batchfetch-1.1.4 → batchfetch-1.1.5}/setup.cfg +0 -0
  19. {batchfetch-1.1.4 → batchfetch-1.1.5}/tests/data/test-md5sum.txt +0 -0
  20. {batchfetch-1.1.4 → batchfetch-1.1.5}/tests/data/test-run_simple.sh +0 -0
  21. {batchfetch-1.1.4 → batchfetch-1.1.5}/tests/test_helpers.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: batchfetch
3
- Version: 1.1.4
3
+ Version: 1.1.5
4
4
  Summary: Efficiently clone and pull multiple Git repositories.
5
5
  Home-page: https://github.com/jamescherti/batchfetch
6
6
  Author: James Cherti
@@ -234,11 +234,10 @@ class BatchFetchGit(TaskBatchFetch):
234
234
  # Merge
235
235
  do_git_pull = self["git_pull"]
236
236
  if not self["reference"]:
237
- self.add_output(
238
- self.indent_spaces +
237
+ do_git_pull = True
238
+ self.add_output(self.indent_spaces +
239
239
  "[INFO] Git fetch origin reason: " +
240
- f"No 'reference:' specified." +
241
- "\n")
240
+ "No 'reference:' specified\n")
242
241
  else:
243
242
  do_git_pull = False
244
243
  commit_ref = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: batchfetch
3
- Version: 1.1.4
3
+ Version: 1.1.5
4
4
  Summary: Efficiently clone and pull multiple Git repositories.
5
5
  Home-page: https://github.com/jamescherti/batchfetch
6
6
  Author: James Cherti
@@ -22,7 +22,7 @@ from setuptools import find_packages, setup
22
22
 
23
23
  setup(
24
24
  name="batchfetch",
25
- version="1.1.4",
25
+ version="1.1.5",
26
26
  packages=find_packages(),
27
27
  description="Efficiently clone and pull multiple Git repositories.",
28
28
  license="GPLv3",
File without changes
File without changes
File without changes
File without changes
File without changes