mirror of
https://github.com/holos-run/holos.git
synced 2026-03-21 09:45:00 +00:00
16 lines
299 B
Bash
Executable File
16 lines
299 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# cd to the repository root
|
|
TOPLEVEL="$(cd $(dirname "$0") && cd .. && pwd)"
|
|
cd "$TOPLEVEL"
|
|
|
|
set -xeuo pipefail
|
|
|
|
# this should work
|
|
export CUE_EXPERIMENT=evalv3=0
|
|
holos show buildplans
|
|
|
|
# this should also work but probably does not
|
|
export CUE_EXPERIMENT=evalv3=1
|
|
holos show buildplans
|