diff options
author | 2020-11-07 10:57:02 -0800 | |
---|---|---|
committer | 2020-11-07 10:57:02 -0800 | |
commit | 37e3a81f25f2980af60bee595d905a3abdf40811 (patch) | |
tree | f574e0f7cfa81a975b4aca11aa01ed49423ba40b | |
parent | 263423edadf60ae2e1a3073d0ebff44f6d729b21 (diff) | |
download | coredns-37e3a81f25f2980af60bee595d905a3abdf40811.tar.gz coredns-37e3a81f25f2980af60bee595d905a3abdf40811.tar.zst coredns-37e3a81f25f2980af60bee595d905a3abdf40811.zip |
Remove redundant `''` as Linux does not need it.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
-rw-r--r-- | .github/workflows/whitespace.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/whitespace.yml b/.github/workflows/whitespace.yml index 18d470887..3f27966fd 100644 --- a/.github/workflows/whitespace.yml +++ b/.github/workflows/whitespace.yml @@ -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: |