mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 02:31:29 +00:00
R=gavinmak@google.com Change-Id: I7d9ca9530640ffa4b8e60c247f809b0ff477d88e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3673716 Auto-Submit: Josip Sokcevic <sokcevic@google.com> Reviewed-by: Gavin Mak <gavinmak@google.com> Commit-Queue: Gavin Mak <gavinmak@google.com>
12 lines
391 B
Batchfile
12 lines
391 B
Batchfile
@echo off
|
|
:: Copyright 2016 The Chromium Authors. All rights reserved.
|
|
:: Use of this source code is governed by a BSD-style license that can be
|
|
:: found in the LICENSE file.
|
|
setlocal
|
|
|
|
:: Ensure that "depot_tools" is somewhere in PATH so this tool can be used
|
|
:: standalone, but allow other PATH manipulations to take priority.
|
|
set PATH=%PATH%;%~dp0
|
|
|
|
python3 "%~dp0cpplint.py" %*
|