From 9633bcca35277430b621e40febfff94404a9bed5 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 2 Mar 2020 21:21:42 -0500 Subject: [PATCH] lint.py: one more .. to find sneak_root --- tools/scripts/lint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/lint.py b/tools/scripts/lint.py index 9ebc335..70724ee 100644 --- a/tools/scripts/lint.py +++ b/tools/scripts/lint.py @@ -54,7 +54,7 @@ def lint_csharp(filename): def main(args): this_dir = os.path.dirname(os.path.realpath(__file__)) - sneak_root = os.path.join(this_dir, '..', '..') + sneak_root = os.path.join(this_dir, '..', '..', '..') os.chdir(sneak_root) csharp_files = sorted(glob.glob('**/*.cs', recursive=True))