diff options
Diffstat (limited to 'security/nss/automation/taskcluster/scripts/extend_task_graph.sh')
-rwxr-xr-x | security/nss/automation/taskcluster/scripts/extend_task_graph.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/security/nss/automation/taskcluster/scripts/extend_task_graph.sh b/security/nss/automation/taskcluster/scripts/extend_task_graph.sh new file mode 100755 index 000000000..5a3fb8d98 --- /dev/null +++ b/security/nss/automation/taskcluster/scripts/extend_task_graph.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +set -v -e -x + +if [ $(id -u) = 0 ]; then + # Drop privileges by re-running this script. + exec su worker $0 +fi + +mkdir -p /home/worker/artifacts + +# Install Node.JS dependencies. +cd nss/automation/taskcluster/graph/ && npm install + +# Extend the task graph. +node lib/index.js |