Skip to content

Commit

Permalink
test: Don't put quotes around $(SAMPLES)
Browse files Browse the repository at this point in the history
It makes it into one item instead of splitting them at spaces,
which isn't what we want.

Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
  • Loading branch information
dwbuiten committed Oct 16, 2018
1 parent b1593ea commit f3c6b00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ run: all
done

sync:
@for i in "$(SAMPLES)"; do \
@for i in $(SAMPLES); do \
if [ ! -f "$(SAMPLES_DIR)/$$i" ]; then \
wget -O $(SAMPLES_DIR)/$$i $(SAMPLES_URL)/$$i; \
fi \
Expand Down

0 comments on commit f3c6b00

Please sign in to comment.