Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
Revert self-update breaking change (#150)
Browse files Browse the repository at this point in the history
[Bugfix]
- v2.8.0 broke self update, this PR reverts the change.

[Instructions]
Users already on v2.8.0 will have to do the following:
1. Open a shell 
2. Enter the Heavyscript menu: 
- - heavyscript
or
- - Go to where heavyscript is installed and run: 
- - bash heavy_script/heavy_script.sh

4. Choose option 4: Heavyscript Options
5. Choose option 1: Self Update
  • Loading branch information
Heavybullets8 authored Jan 8, 2024
1 parent fa4e00e commit f29e979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heavy_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ if remove_no_config_args; then
fi

# Run the self update function if the script has not already been updated
if [[ $no_self_update == false ]] && check_help "${args[@]}"; then
if [[ $no_self_update == false ]]; then
self_update_handler "${args[@]}"
fi

Expand Down

0 comments on commit f29e979

Please sign in to comment.