Lines Matching +full:path +full:- +full:is +full:- +full:absolute
9 # http://www.apache.org/licenses/LICENSE-2.0
12 # distributed under the License is distributed on an "AS IS" BASIS,
20 from pathlib import Path
22 # Get the path where this script is located so we can invoke the script from
24 script_path = Path(__file__).parent.resolve()
26 # Get the root path as an absolute path, so all derived paths are absolute.
27 root_path = script_path.parent.absolute()
29 result = subprocess.run(["git", "diff", "--quiet", "--ignore-cr-at-eol"], cwd=root_path)
36 "ERROR: * Perhaps there is a difference in the flags for the. *\n"
40 subprocess.run(["git", "diff", "--binary", "--exit-code"], cwd=root_path)
49 result = subprocess.run(["git", "diff", "--quiet", "--ignore-cr-at-eol"], cwd=root_path)
60 subprocess.run(["git", "diff", "--binary", "--exit-code"], cwd=root_path)