Skip to content

Commit

Permalink
fix: remove space in debug output
Browse files Browse the repository at this point in the history
The extra space made the debug string into a plain string, always being shown.

PR: #141
  • Loading branch information
jbergstroem committed Feb 3, 2024
1 parent 45ce26d commit fd5687f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ if [ "${DOWNLOAD}" == "true" ]; then
chmod +x /usr/local/bin/hadolint
fi

echo "::debug:: $(hadolint --version | cut -d " " -f 4 2>&1) installed successfully"
new_version=$(hadolint --version | cut -d ' ' -f 4 2>&1)
echo "::debug::Hadolint ${new_version} installed successfully"

0 comments on commit fd5687f

Please sign in to comment.