diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-06-10 02:02:10 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-06-10 02:02:10 +0200 |
commit | f7e99424ee2b422989eee18bf825e2a6f59c2625 (patch) | |
tree | fdd2902ffec3d53389a0c44b0813cfc23119ad1b | |
parent | 4dbb6328b9d614a5713eb7591ef4aa858871bb3d (diff) |
deno2: Fix lint
-rwxr-xr-x | deno2/tools/lint.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deno2/tools/lint.sh b/deno2/tools/lint.sh index 8049ff6e0..c307d67d0 100755 --- a/deno2/tools/lint.sh +++ b/deno2/tools/lint.sh @@ -1,4 +1,4 @@ #!/bin/sh cd `dirname "$0"`/.. -set -e -cpplint *.cc *.h +set -e -v +cpplint --repository=. *.cc *.h |