Skip to content
Merged
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
6 changes: 3 additions & 3 deletions dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ HLK_SETUP_SCRIPTS_REF=9c239aa6294075ee513133c675cb4e5fe3f4d426
# HLK_SETUP_SCRIPTS_DIR=

EXTRA_SOFTWARE_GIT=https://github.com/HCK-CI/extra-software.git
EXTRA_SOFTWARE_REF=791470e49bc18ff59fa001dc8f5217c69fd358ac
EXTRA_SOFTWARE_REF=2f0c255cdc829446befb169066a4e3408ef392ef

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

It's a good practice in shell scripting to quote string variable assignments to prevent potential issues with special characters, word splitting, or globbing. This also improves readability by clearly delineating the string value.1

Suggested change
EXTRA_SOFTWARE_REF=2f0c255cdc829446befb169066a4e3408ef392ef
EXTRA_SOFTWARE_REF="2f0c255cdc829446befb169066a4e3408ef392ef"

Style Guide References

Footnotes

  1. The Google Shell Style Guide recommends quoting all string values that are not integer literals or identifiers to prevent bugs from word splitting or globbing.

# EXTRA_SOFTWARE_DIR=

HLK_PLAYLISTS_GIT=https://github.com/HCK-CI/hlkplaylists.git
HLK_PLAYLISTS_REF=d2ee05022de73ba2c346df7b00a51451d6728231
# HLK_PLAYLISTS_DIR=

HCK_FILTERS_GIT=https://github.com/HCK-CI/hckfilters.git
HCK_FILTERS_REF=8a4f16f4559e0feca271f6815d8e9c9ea670f00c
HCK_FILTERS_REF=b9d95cb496b011929ded33051901fc659b79a4d9

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For consistency and robustness, this string value should also be quoted.1

Suggested change
HCK_FILTERS_REF=b9d95cb496b011929ded33051901fc659b79a4d9
HCK_FILTERS_REF="b9d95cb496b011929ded33051901fc659b79a4d9"

Style Guide References

Footnotes

  1. The Google Shell Style Guide recommends quoting all string values that are not integer literals or identifiers to prevent bugs from word splitting or globbing.

# HCK_FILTERS_DIR=

AUTOHCK_GIT=https://github.com/HCK-CI/AutoHCK.git
AUTOHCK_REF=v0.17.0
AUTOHCK_REF=v0.17.1

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For consistency and robustness, this version tag should also be quoted.1

Suggested change
AUTOHCK_REF=v0.17.1
AUTOHCK_REF="v0.17.1"

Style Guide References

Footnotes

  1. The Google Shell Style Guide recommends quoting all string values that are not integer literals or identifiers to prevent bugs from word splitting or globbing.

# AUTOHCK_DIR=