···11#!/bin/bash
22# This works around the lack of CI features in tangled's pipelines
33# Convenience alias in repo root dir
44-set -xo pipefail # no e - https://mywiki.wooledge.org/BashFAQ/105 and no u because we CI baybeee
44+set -o pipefail # no e - https://mywiki.wooledge.org/BashFAQ/105 and no xu because we CI baybeee
55bash ./scripts/pipeline/init.sh "$*"
···11#!/bin/bash
22-set -xo pipefail # no e - https://mywiki.wooledge.org/BashFAQ/105 and no u because we CI baybeee
22+set -o pipefail # no e - https://mywiki.wooledge.org/BashFAQ/105 and no xu because we CI baybeee
33WORKDIR="/tangled/workspace"
44CMDPREFIX="init.sh:"
5566source "$WORKDIR/scripts/pipeline/util.sh"
77+source "$WORKDIR/scripts/pipeline/corepack.sh"
7889if [[ $SET_CWD ]]; then
910 echo "init.sh: set cwd to $SET_CWD"