disable 415 B

12345678910
  1. #!/bin/sh
  2. # Copyright (c) 2021 The Chromium Authors. All rights reserved.
  3. # Use of this source code is governed by a BSD-style license that can be
  4. # found in the LICENSE file.
  5. # disable -- a shell wrapper for disable.py, to avoid calling disable.py
  6. # directly. This will give us flexibility to restructure things later.
  7. base_dir=$(dirname "$0")
  8. PYTHONDONTWRITEBYTECODE=1 exec vpython3 "$base_dir/disable.py" "$@"