Переглянути джерело

Remove extra spaces in checksum (#976)

Fixes #902.
pull/978/head
Nikita Grishko 7 роки тому
committed by Daniel Hahler
джерело
коміт
09bc868ea8
1 змінених файлів з 2 додано та 2 видалено
  1. +2
    -2
      plugins/python-build/bin/python-build

+ 2
- 2
plugins/python-build/bin/python-build Переглянути файл

@ -248,7 +248,7 @@ compute_sha2() {
echo "${output##* }"
elif type sha256sum &>/dev/null; then
output="$(sha256sum -b)" || return 1
echo "${output% *}"
echo "${output%% *}"
else
return 1
fi
@ -263,7 +263,7 @@ compute_md5() {
echo "${output##* }"
elif type md5sum &>/dev/null; then
output="$(md5sum -b)" || return 1
echo "${output% *}"
echo "${output%% *}"
else
return 1
fi

Завантаження…
Відмінити
Зберегти