Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vue-build.sh « tests - github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea276e79908d81a08a302a56f90f9be0f0c2fc27 (plain)
1
2
3
4
5
6
7
8
9
#!/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 )"