HotShot icon indicating copy to clipboard operation
HotShot copied to clipboard

Syntax & Style Fixes

Open NeoByteXx opened this issue 9 months ago • 1 comments

  1. Regex Fix in nix_bump_pr_changes.py Old: r"'github:([^/]+/[^/]+)/([^']+)" New: r"'github:([^/]+/[^/]+)/([^']+)" Why? Removed unnecessary backslashes for cleaner regex.
  2. Error Message Improvement in Shell Script Old: echo "Unknown option $1" New: echo "Unknown option: $1" Why? Added a colon for better readability.
  3. Shell Syntax Cleanup Old: echo "${1}"; exit 1; New: echo "$1"; exit 1 Why? Removed redundant curly braces for cleaner syntax.

NeoByteXx avatar Feb 24 '25 19:02 NeoByteXx

CLA assistant check
All committers have signed the CLA.

CLAassistant avatar Feb 24 '25 19:02 CLAassistant