Fix code formatter

This commit is contained in:
Arnie 2019-09-09 15:52:32 +02:00
parent dc36be2efb
commit 88ba0839b5
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
__csscomb() {
__msg "Csscomb:"
local files="${1}"
local files=("$@")
if [[ ${DRY_RUN} -eq 0 ]]; then
csscomb -v "${files[@]}"

View File

@ -3,7 +3,7 @@
__prettier() {
__msg "Prettier:"
local files="${1}"
local files=("$@")
if [[ ${DRY_RUN} -eq 0 ]]; then
prettier --write "${files[@]}"