14 lines
191 B
Bash
Executable File
14 lines
191 B
Bash
Executable File
#!/bin/sh
|
|
# Run the gallery
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
cd ..
|
|
./node_modules/.bin/gulp build-translations gen-icons
|
|
cd gallery
|
|
|
|
../node_modules/.bin/webpack-dev-server
|