Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Makefile.webui: show gzip command in verbose mode
  • Loading branch information
perexg committed May 19, 2015
1 parent 61eeb38 commit 9e472e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.webui
Expand Up @@ -154,7 +154,7 @@ define GO_JS
$(VV)cat $^ > $@.tmp
$(VV)$(RUN_JS) < $@.tmp > $@.tmp2
@stat --printf="%-35n %7s\n" $@.tmp $@.tmp2
@$(GZIP) -c $@.tmp2 > $@.tmp
$(VV)$(GZIP) -c $@.tmp2 > $@.tmp
@rm $@.tmp2
@mv $@.tmp $@
@stat --printf="%-35n %7s\n" $@
Expand All @@ -165,7 +165,7 @@ define GO_CSS
$(VV)$(CSS_PY) --in="$^" > $@.tmp
$(VV)$(RUN_CSS) < $@.tmp > $@.tmp2
@stat --printf="%-35n %7s\n" $@.tmp $@.tmp2
@$(GZIP) -c $@.tmp2 > $@.tmp
$(VV)$(GZIP) -c $@.tmp2 > $@.tmp
@rm $@.tmp2
@mv $@.tmp $@
@stat --printf="%-35n %7s\n" $@
Expand Down

0 comments on commit 9e472e1

Please sign in to comment.