You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/scripts/uigen.sh

19 lines
307 B

#!/bin/sh
set -e
if [ -z "$UI_CLONE_DIR" ]; then
echo "Must set UI_CLONE_DIR"; exit 1
fi
if [ -z "$UI_ASSETS_FILE" ]; then
echo "Must set UI_ASSETS_FILE"; exit 1
fi
(
cd "$UI_CLONE_DIR"
if ! (yarn install && yarn build); then
echo "Please ensure Node v14+ and Yarn v1.22.10+ are installed."
fi
)