Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
- [Peter Yasi](https://github.com/pyasi)
- [Nicole Tibay](https://github.com/neequole)
- [Rods](https://github.com/rods-honorio)
- [Renê Schneider](https://github.com/renews)
2 changes: 1 addition & 1 deletion shallow_backup/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class ProjInfo:
PROJECT_NAME = "shallow-backup"
VERSION = "6.4"
VERSION = "6.5"
AUTHOR_GITHUB = "alichtman"
AUTHOR_FULL_NAME = "Aaron Lichtman"
DESCRIPTION = (
Expand Down
2 changes: 1 addition & 1 deletion shallow_backup/reinstall.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def run_cmd_if_no_dry_run(command, dry_run) -> int:
for pm in package_mgrs:
if pm == "brew":
print_pkg_mgr_reinstall(pm)
cmd = f"brew bundle install --no-lock --file {packages_path}/brew_list.txt"
cmd = f"brew bundle install --file {packages_path}/brew_list.txt"
run_cmd_if_no_dry_run(cmd, dry_run)
elif pm == "npm":
print_pkg_mgr_reinstall(pm)
Expand Down