Skip to content

Commit

Permalink
[query] fix install-on-cluster to handle lines with spaces (#12216)
Browse files Browse the repository at this point in the history
CHANGELOG: Fix bug that caused make install-on-cluster to fail with a message about sys_platform.

Co-authored-by: ryerobinson <[email protected]>

Co-authored-by: ryerobinson <[email protected]>
  • Loading branch information
danking and ryerobinson authored Sep 22, 2022
1 parent c7f532f commit ef14a51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hail/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ install: $(WHEEL)

.PHONY: install-on-cluster
install-on-cluster: $(WHEEL)
sed '/^pyspark/d' python/requirements.txt | grep -v '^#' | xargs $(PIP) install -U
sed '/^pyspark/d' python/requirements.txt | grep -v '^#' | tr '\n' '\0' | xargs -0 $(PIP) install -U
-$(PIP) uninstall -y hail
$(PIP) install $(WHEEL) --no-deps

Expand Down

0 comments on commit ef14a51

Please sign in to comment.