feat: add "URL" field to sysroots.json (#29)

This commit is contained in:
Cheng Zhao 2023-09-19 02:34:19 +09:00 коммит произвёл GitHub
Родитель d13d36c17e
Коммит ddd50240e7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -16,6 +16,7 @@ import subprocess
import sys
ARCHES = ("amd64", "i386", "armhf", "arm64", "armel", "mipsel", "mips64el")
DEFAULT_URL_PREFIX = "https://dev-cdn.electronjs.org/linux-sysroots"
def sha1sumfile(filename):
@ -52,6 +53,7 @@ def build_and_upload(script_path, distro, release, key, arch, lock):
"Sha1Sum": sha1sum,
"SysrootDir": sysroot_dir,
"Tarball": tarball,
"URL": DEFAULT_URL_PREFIX,
}
with lock:
fname = os.path.join(script_dir, "sysroots.json")