mirror of
https://github.com/Instagram/LibCST.git
synced 2025-12-23 10:35:53 +00:00
10 lines
270 B
Bash
Executable file
10 lines
270 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
PARSE=$(dirname $0)/target/release/parse
|
|
|
|
exec diff -u "$1" <($PARSE < "$1")
|