Skip to content

Commit

Permalink
Update entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Apr 3, 2023
1 parent c72bca3 commit f7c3f5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion entrypoint.sh
Expand Up @@ -3,7 +3,8 @@
set -euo pipefail

OUTPUT_PATH="cliff.toml"
TEMPLATE_CONFIG=$INPUT_TEMPLATE_CONFIG
DEFAULT_TEMPLATE_CONFIG=$GITHUB_ACTION_PATH"/cliff-template.toml

Check notice on line 6 in entrypoint.sh

View workflow job for this annotation

GitHub Actions / shellcheck

[shellcheck] entrypoint.sh#L6 <ShellCheck.SC1009>

The mentioned syntax error was in this variable assignment.
Raw output
./entrypoint.sh:6:1: info: The mentioned syntax error was in this variable assignment. (ShellCheck.SC1009)

Check warning on line 6 in entrypoint.sh

View workflow job for this annotation

GitHub Actions / shellcheck

[shellcheck] entrypoint.sh#L6 <ShellCheck.SC1078>

Did you forget to close this double quoted string?
Raw output
./entrypoint.sh:6:44: warning: Did you forget to close this double quoted string? (ShellCheck.SC1078)
TEMPLATE_CONFIG=${INPUT_TEMPLATE_CONFIG:-$DEFAULT_TEMPLATE_CONFIG}
if [[ ! -f "$OUTPUT_PATH" ]]; then

Check notice on line 9 in entrypoint.sh

View workflow job for this annotation

GitHub Actions / shellcheck

[shellcheck] entrypoint.sh#L9 <ShellCheck.SC1079>

This is actually an end quote, but due to next char it looks suspect.
Raw output
./entrypoint.sh:9:12: info: This is actually an end quote, but due to next char it looks suspect. (ShellCheck.SC1079)

Check warning on line 9 in entrypoint.sh

View workflow job for this annotation

GitHub Actions / shellcheck

[shellcheck] entrypoint.sh#L9 <ShellCheck.SC1078>

Did you forget to close this double quoted string?
Raw output
./entrypoint.sh:9:25: warning: Did you forget to close this double quoted string? (ShellCheck.SC1078)
if [[ "$TEMPLATE_CONFIG" == "http"* ]] || [[ "$TEMPLATE_CONFIG" == "https"* ]]; then

Check notice on line 10 in entrypoint.sh

View workflow job for this annotation

GitHub Actions / shellcheck

[shellcheck] entrypoint.sh#L10 <ShellCheck.SC1079>

This is actually an end quote, but due to next char it looks suspect.
Raw output
./entrypoint.sh:10:9: info: This is actually an end quote, but due to next char it looks suspect. (ShellCheck.SC1079)

Check warning on line 10 in entrypoint.sh

View workflow job for this annotation

GitHub Actions / shellcheck

[shellcheck] entrypoint.sh#L10 <ShellCheck.SC1078>

Did you forget to close this double quoted string?
Raw output
./entrypoint.sh:10:76: warning: Did you forget to close this double quoted string? (ShellCheck.SC1078)
Expand Down

0 comments on commit f7c3f5b

Please sign in to comment.