mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-07 08:02:30 -06:00
Avoid using legacy backticks
https://github.com/koalaman/shellcheck/wiki/SC2006
This commit is contained in:
4
.github/workflows/coverity-scan.yml
vendored
4
.github/workflows/coverity-scan.yml
vendored
@@ -68,7 +68,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Build with cov-build
|
- name: Build with cov-build
|
||||||
run: |
|
run: |
|
||||||
export PATH=`pwd`/coverity_tool/bin:$PATH
|
export PATH="$(pwd)/coverity_tool/bin:$PATH"
|
||||||
cov-build --dir cov-int cmake --build build
|
cov-build --dir cov-int cmake --build build
|
||||||
|
|
||||||
- name: Submit the result to Coverity Scan
|
- name: Submit the result to Coverity Scan
|
||||||
@@ -78,7 +78,7 @@ jobs:
|
|||||||
--form token=$TOKEN \
|
--form token=$TOKEN \
|
||||||
--form email=sledgehammer999@qbittorrent.org \
|
--form email=sledgehammer999@qbittorrent.org \
|
||||||
--form file=@qbittorrent.tgz \
|
--form file=@qbittorrent.tgz \
|
||||||
--form version="`git rev-parse --short HEAD`" \
|
--form version="$(git rev-parse --short HEAD)" \
|
||||||
--form description="master" \
|
--form description="master" \
|
||||||
https://scan.coverity.com/builds?project=qbittorrent%2FqBittorrent
|
https://scan.coverity.com/builds?project=qbittorrent%2FqBittorrent
|
||||||
env:
|
env:
|
||||||
|
|||||||
Reference in New Issue
Block a user