-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
scope: scriptsShell scripts and makefilesShell scripts and makefilestype: tech debtImprovements to code quality that don't necessarily have noticeable functional or behavior changesImprovements to code quality that don't necessarily have noticeable functional or behavior changesworkflow: self-containedDoesn't require a lot of context to pick upDoesn't require a lot of context to pick up
Description
Related to be separate from #661. See examples in https://google.github.io/styleguide/shellguide.html#quoting
Example:
script_dir=$(dirname "$0")Should become:
script_dir="$(dirname "$0")"Metadata
Metadata
Assignees
Labels
scope: scriptsShell scripts and makefilesShell scripts and makefilestype: tech debtImprovements to code quality that don't necessarily have noticeable functional or behavior changesImprovements to code quality that don't necessarily have noticeable functional or behavior changesworkflow: self-containedDoesn't require a lot of context to pick upDoesn't require a lot of context to pick up