mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
Check lock files for changes as well
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
f50b75f7a1
commit
1c9f3f98fb
1 changed files with 4 additions and 0 deletions
|
|
@ -7,3 +7,7 @@ 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 )"
|
||||
|
||||
bash -c "[[ ! \"`git status --porcelain vue/package-lock.json`\" ]] || ( git diff vue/package-lock.json && echo 'Uncommitted changes in vue/package-lock.json' && exit 1 )"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue