@@ -204,7 +204,7 @@ Usage: $0 [--help] [--list-networks]
204
204
205
205
Options:
206
206
--help Display this help message
207
- --version Display the latest commit hash (=version) of the script
207
+ --version Display the latest local commit hash (=version) of the script
208
208
--list-networks List all supported networks and their chain IDs
209
209
--network <network> Specify the network (required)
210
210
--address <address> Specify the Safe multisig address (required)
@@ -224,15 +224,15 @@ EOF
224
224
exit " ${1:- 1} "
225
225
}
226
226
227
- # Utility function to retrieve the latest commit hash from the Git repository.
227
+ # Utility function to retrieve the latest local commit hash from the Git repository.
228
228
# We don't include `git` in the `check_required_tools` function to avoid making
229
229
# it a strict dependency for the script to run.
230
230
get_latest_git_commit_hash () {
231
231
local commit_hash=" "
232
232
if command -v git & > /dev/null; then
233
233
commit_hash=$( git rev-parse HEAD 2> /dev/null)
234
234
if [[ -n " $commit_hash " ]]; then
235
- echo -e " Commit hash (=version) of the script: ${GREEN} $commit_hash ${RESET} ."
235
+ echo -e " Latest local commit hash (=version) of the script: ${GREEN} $commit_hash ${RESET} ."
236
236
exit 0
237
237
else
238
238
echo -e " ${BOLD}${RED} No commit hash information available. There may be an issue with your Git installation or repository configuration.${RESET} "
@@ -701,7 +701,7 @@ calculate_safe_hashes() {
701
701
# Parse the command line arguments.
702
702
# Please note that `--help`, `--version`, and `--list-networks` can be used
703
703
# independently or alongside other options without causing the script to fail.
704
- # They are special options that can be called without affecting the rest of
704
+ # They are special options that can be called without affecting the rest of
705
705
# the command processing.
706
706
while [[ $# -gt 0 ]]; do
707
707
case " $1 " in
0 commit comments