File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ paths_with_missing_license=( )
6565# fi
6666# file_paths=$(echo "$file_excludes" | tr '\n' '\0' | xargs -0 -I% printf '":(exclude)%" '| xargs git ls-files)
6767file_paths=$( tr ' \n' ' \0' < .licenseignore | xargs -0 -I% printf ' ":(exclude)%" ' | xargs git ls-files " :(exclude).licenseignore" " :(exclude).license_header_template" )
68- echo $ file_paths
68+ echo " ${ file_paths} "
6969
7070while IFS= read -r file_path; do
7171 file_basename=$( basename -- " ${file_path} " )
Original file line number Diff line number Diff line change 1515# #===----------------------------------------------------------------------===##
1616
1717BIN_PATH=" $( swift build --show-bin-path) "
18- XCTEST_PATH=" $( find ${BIN_PATH} -name ' *.xctest' ) "
18+ XCTEST_PATH=$( find " ${BIN_PATH} " -name ' *.xctest' )
1919COV_BIN=$XCTEST_PATH
2020
2121if [[ " $OSTYPE " == " darwin" * ]]; then
22- f=" $( basename $ XCTEST_PATH .xctest) "
22+ f=$( basename " ${ XCTEST_PATH} " .xctest)
2323 COV_BIN=" ${COV_BIN} /Contents/MacOS/$f "
2424 LLVM_COV=" /opt/homebrew/opt/llvm/bin/llvm-cov"
2525else
2626 echo " Unsupported OS: $OSTYPE "
27- exit - 1
27+ exit 1
2828fi
2929
3030${LLVM_COV} report \
You can’t perform that action at this time.
0 commit comments