9 lines
269 B
Bash
Executable File
9 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2020 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
SCRIPT_PATH="$(dirname "$(realpath "$0")")"
|
|
exec "${SCRIPT_PATH}"/clippy --use-cache "$@"
|