mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-11 14:24:03 +02:00
* Add link script * Set run_immediately=False * Add await hass.async_block_till_done() * Use scripts/link * Rename scripts * Links in devcontainer * Install from setup script
13 lines
273 B
Bash
Executable file
13 lines
273 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -ex
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# Link custom components
|
|
cd core/homeassistant/components/
|
|
ln -fs ../../../custom_components/adaptive_lighting adaptive_lighting
|
|
cd -
|
|
|
|
# Link tests
|
|
cd core/tests/components/
|
|
ln -fs ../../../tests/ adaptive_lighting
|
|
cd -
|