Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
iaguis committed Dec 7, 2016
1 parent 07aee0e commit 143d788
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/generate_latest_map
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ function generate_latest_map {
local empty_latest_map_variable="Empty${latest_map_type}"
local make_function="Make${latest_map_type}"

# shellcheck disable=SC2016
local json_timestamp='`json:"timestamp"`'
local json_value='`json:"value"`'

Expand Down Expand Up @@ -168,7 +169,7 @@ outtmp="${out}.tmp"

generate_header "${outtmp}" "${0} ${*}"
shift
for t in ${*}; do
for t in "${@}"; do
generate_latest_map "${outtmp}" "${t}"
done

Expand Down

0 comments on commit 143d788

Please sign in to comment.