mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-22 12:27:19 +00:00
10 lines
133 B
Bash
Executable File
10 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
# Run the landing-page
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
./node_modules/.bin/gulp develop-landing-page
|