Merged
Changes from 1 commit
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
PrevPrevious commit
Use shelljoin
Ensures any file arguments with spaces are correctly handled.
  • Loading branch information
@pbrisbin
pbrisbin committedFeb 12, 2016
commit 940a757b34a1b4d08367bc92fd9318445d1da009
Original file line numberDiff line numberDiff line change
Expand Up@@ -62,7 +62,7 @@ def results
end

def csslint_xml
`csslint --format=checkstyle-xml #{files_to_inspect.join(" ")}`
`csslint --format=checkstyle-xml #{files_to_inspect.shelljoin}`
end

def files_to_inspect
Expand Down