From b92b23d6079d620f4773d91dfb267d31c9fd48f8 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Thu, 27 Jan 2022 12:33:24 -0800 Subject: [PATCH] Use . rather than source, latter is not always available --- script/cibuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/cibuild b/script/cibuild index b234789..1b5ca37 100755 --- a/script/cibuild +++ b/script/cibuild @@ -32,7 +32,7 @@ echo "## validate setup.py install ############################################# deactivate TMP_DIR=$(mktemp -d -t ci-XXXXXXXXXX) python3 -m venv $TMP_DIR -source "$TMP_DIR/bin/activate" +. "$TMP_DIR/bin/activate" python setup.py install octodns-sync --help echo "## validate tests can run against installed code ###############################"