Compare commits

...

1 Commits

Author SHA1 Message Date
9a75a91df2 Fix code formatter 2019-09-09 15:52:51 +02:00
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ GIT_TAG = $(shell git describe --tags --exact-match 2>/dev/null)
VERSION := $(or $(GIT_TAG),latest)
all : VERSION := 1.1.0
all : VERSION := 1.1.1
all : build release
.PHONY : all

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[@]}"