mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-23 12:57:21 +00:00
10 lines
117 B
Bash
Executable File
10 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
# Build the demo
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
./node_modules/.bin/gulp build-demo
|