1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 15:28:06 +02:00

ignore swap files when linting

This commit is contained in:
Shane Kilkelly 2020-06-17 12:01:10 +01:00
parent cebf0be689
commit 0da51c19df

View file

@ -1,3 +1,3 @@
#! /usr/bin/env bash
find ./bin -type f -print0 | xargs -0 shellcheck
exec find ./bin -type f -not -name '*.swp' -print0 | xargs -0 shellcheck