diff --git a/bin/setup_base b/bin/setup_base index 0e56b643e..a9d150f00 100755 --- a/bin/setup_base +++ b/bin/setup_base @@ -1,5 +1,7 @@ #!/bin/bash +sudo apt-get install -y hxtools + python3 -m venv venv venv/bin/pip3 install -r etc/requirements.txt diff --git a/bin/test_sequencer b/bin/test_sequencer index af918d3b2..fc3c4caf0 100755 --- a/bin/test_sequencer +++ b/bin/test_sequencer @@ -11,7 +11,12 @@ fi project_id=$1 shift -echo 'Using target project (base64):' $(echo =$project_id | base64) +if [[ -n `which rot13` ]]; then + # Project is provided as a secret, so obfuscate to prevent redactions in server-side logs. + echo 'Using target project (rot13):' $(echo $project_id | rot13) +else + echo 'Using target project:' $project_id +fi site_path=sites/udmi_site_model device_id=AHU-1 diff --git a/pubber/.idea/runConfigurations/Pubber.xml b/pubber/.idea/runConfigurations/Pubber.xml index 8b5722f72..90d48254a 100644 --- a/pubber/.idea/runConfigurations/Pubber.xml +++ b/pubber/.idea/runConfigurations/Pubber.xml @@ -2,7 +2,7 @@