Remove redundant '' as Linux does not need it.

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
Yong Tang
2020-11-07 10:57:02 -08:00
parent 263423edad
commit 37e3a81f25

View File

@@ -17,7 +17,7 @@ jobs:
-
name: Remove Trailing Whitespaces
run: |
find . -not -path '*/\.git/*' -type f -not -name '*.go' -exec sed -i '' 's/[[:space:]]\{1,\}$//' {} \+
find . -not -path '*/\.git/*' -type f -not -name '*.go' -exec sed -i 's/[[:space:]]\{1,\}$//' {} \+
-
name: Set up Git
env: