mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
16 lines
297 B
Bash
16 lines
297 B
Bash
|
|
#!/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
|