mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-11 22:34:04 +02:00
13 lines
273 B
Text
13 lines
273 B
Text
|
|
#!/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 -
|