mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
11 lines
354 B
Bash
Executable file
11 lines
354 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
# Build the Vue files
|
|
make build-js-production
|
|
|
|
git status
|
|
|
|
bash -c "[[ ! \"`git status --porcelain js`\" ]] || ( echo 'Uncommitted changes in built Vue files' && exit 1 )"
|
|
|
|
bash -c "[[ ! \"`git status --porcelain package-lock.json`\" ]] || ( git diff package-lock.json && echo 'Uncommitted changes in package-lock.json' && exit 1 )"
|