10 lines
126 B
Bash
Executable File
10 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
# Build the cast receiver
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
./node_modules/.bin/gulp build-cast
|