Skip to content

Commit d0149c9

Browse files
committed
Wrap makefile cwd strings in quotes
1 parent 996ff7f commit d0149c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PACKAGE = asyncjs
22
NODEJS = $(if $(shell test -f /usr/bin/nodejs && echo "true"),nodejs,node)
3-
CWD := $(shell pwd)
3+
CWD := "$(shell pwd)"
44
NODEUNIT = $(CWD)/node_modules/nodeunit/bin/nodeunit
55
UGLIFY = $(CWD)/node_modules/uglify-js/bin/uglifyjs
66
NODELINT = $(CWD)/node_modules/nodelint/nodelint

0 commit comments

Comments
 (0)