Skip to content

Commit

Permalink
Fixes webpack-dev-server options in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrudner committed Mar 10, 2020
1 parent b6f3f18 commit 33ac4d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ src = index.js $(shell find . -type f -name '*.js' ! -path './build/*' -o -name
tests = $(shell find test -type f -name '*.js')

ifdef RECURLY_JS_CERT
server_opts = "--https --cert $(RECURLY_JS_CERT) --key $(RECURLY_JS_KEY)"
server_opts = --https --cert $(RECURLY_JS_CERT) --key $(RECURLY_JS_KEY)
else
server_opts = "--https"
server_opts = --https
endif

server: build
Expand Down

0 comments on commit 33ac4d7

Please sign in to comment.