Skip to content

Commit

Permalink
#85 lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Oct 2, 2023
1 parent e9d5dfd commit 5ff7e75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion help/to-csv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ set -o pipefail
# suitable for CSV: replacing commas.

data=$(cat)
printf "${data}" | sed 's/,/\\,/'
printf '%s' "${data}" | sed 's/,/\\,/'
2 changes: 1 addition & 1 deletion steps/lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pylint "${LOCAL}/steps/"

rubocop

shellcheck -P "${LOCAL}"/metrics/*.sh -P "${LOCAL}"/filters/*.sh -P "${LOCAL}"/steps/*.sh -P "${LOCAL}"/tests/*.sh
shellcheck -P "${LOCAL}"/metrics/*.sh -P "${LOCAL}"/filters/*.sh -P "${LOCAL}"/steps/*.sh -P "${LOCAL}"/tests/*.sh -P "${LOCAL}"/help/*.sh

mkdir -p "$(dirname "${flag}")"
date +%s%N > "${flag}"

0 comments on commit 5ff7e75

Please sign in to comment.