Files
hacs_integration/scripts/install/frontend
2024-01-19 21:51:59 +01:00

18 lines
640 B
Bash
Executable File

#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/../.."
FRONTEND_VERSION="20220906112053"
EXPERIMENTAL_FRONTEND_VERSION="20240119163101"
rm -rf ./custom_components/hacs/hacs_frontend_experimental
scripts/install/pip_packages --target=./custom_components/hacs "hacs_frontend==${EXPERIMENTAL_FRONTEND_VERSION}"
rm -rf ./custom_components/hacs/*.dist-info
mv ./custom_components/hacs/hacs_frontend ./custom_components/hacs/hacs_frontend_experimental
rm -rf ./custom_components/hacs/hacs_frontend
scripts/install/pip_packages --target=./custom_components/hacs "hacs_frontend==${FRONTEND_VERSION}"
rm -rf ./custom_components/hacs/*.dist-info