Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ run-tests tests: $(TESTS)

.PHONY: check-cuquantum-root-set
check-cuquantum-root-set:
@if [[ -z "$(CUQUANTUM_ROOT)" ]]; then \
echo Error: '$$CUQUANTUM_ROOT must be set in order to use cuStateVec.' \
exit 1 \
@if [ -z "$(CUQUANTUM_ROOT)" ]; then \
echo Error: '$$CUQUANTUM_ROOT must be set in order to use cuStateVec.'; \
exit 1; \
fi

eigen:
Expand Down
Loading