mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 05:43:32 -07:00
Avoid using legacy backticks
https://github.com/koalaman/shellcheck/wiki/SC2006
This commit is contained in:
parent
a23e10dff5
commit
89a8184ad2
1 changed files with 2 additions and 2 deletions
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:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue