about summary refs log tree commit diff
path: root/test/validator.sh
blob: b7e738c9573dc334b79043d9f8297fdfd5f1fe3a (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

NEW_FILES=`git diff --name-only HEAD master | egrep 'wpisy/*'`

for file in $NEW_FILES; do
    echo "../$file" > path.in

    node -r esm check.js < path.in
done