mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 19:09:48 +00:00
10 lines
120 B
Bash
Executable File
10 lines
120 B
Bash
Executable File
#!/bin/sh
|
|
# Run the landing-page
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
yarn run-task build-landing-page
|