#!/bin/bash # SPDX-License-Identifier: GPL-2.0-or-later set -o errexit -o pipefail -o nounset script_dir="$( dirname "$0" | xargs readlink -e )" repo_root=$script_dir/../.. __minikube() { minikube -p=crun-vm-example "$@" } __cp() { __minikube cp "$@" } __ssh() { __minikube ssh -- sudo "$@"