mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Set curl to run silently, added missing double quotes and removed
trailing backslash on checks.yml
This commit is contained in:
parent
721453f923
commit
206e167f85
2 changed files with 3 additions and 3 deletions
2
.github/workflows/checks.yml
vendored
2
.github/workflows/checks.yml
vendored
|
@ -174,7 +174,7 @@ jobs:
|
|||
echo "::set-env name=PATH::$new_path"
|
||||
echo "::set-env name=RUST_BACKTRACE::full"
|
||||
echo "::set-env name=SCOOP::$env:GITHUB_WORKSPACE"
|
||||
echo "::set-env name=SCOOP_GLOBAL::$env:GITHUB_WORKSPACE\"
|
||||
echo "::set-env name=SCOOP_GLOBAL::$env:GITHUB_WORKSPACE"
|
||||
echo "::set-env name=ANKI_EXTRA_PIP::python -m pip install $pyaudio"
|
||||
echo "::set-env name=BUILDFLAGS::"
|
||||
echo "::set-env name=RSPY_TARGET_DIR::$env:GITHUB_WORKSPACE\target"
|
||||
|
|
4
Makefile
4
Makefile
|
@ -166,11 +166,11 @@ fix:
|
|||
.PHONY: add-buildhash
|
||||
add-buildhash:
|
||||
@if [[ ! -f rename ]]; then \
|
||||
curl -LO https://raw.githubusercontent.com/subogero/rename/master/rename; \
|
||||
curl --silent -LO https://raw.githubusercontent.com/subogero/rename/master/rename; \
|
||||
fi && \
|
||||
ver="$$(cat meta/version)" && \
|
||||
hash="$$(cat meta/buildhash)" && \
|
||||
${RENAME_BIN} "s/-$${ver}-/-$${ver}+$${hash}-/" dist/*-$$ver-*
|
||||
${RENAME_BIN} "s/-$${ver}-/-$${ver}+$${hash}-/" dist/*-"$${ver}"-*
|
||||
|
||||
|
||||
.PHONY: pull-i18n
|
||||
|
|
Loading…
Reference in a new issue