/
UCS
/
openwrt_packages
Обзор
Документация
Войти
/
UCS
/
openwrt_packages
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
lang/python/python-certifi/test.sh
18 строк
290 B
Eneas U de Queiroz
python-certifi: add github runtime test
28 июл 2023, 16:39
28 июл 2023, 16:39
219edcf
Код
Авторство
О чём код?
#!/bin/sh case "$1" in *-src) ;; python3-certifi) BUNDLE=$(python3 -m certifi) || { echo "Failed to run the certfi module script. Exit status=$?." >&2 echo "Output='$BUNDLE'" >&2 exit 1 } ls -l "$BUNDLE" ;; *) echo "Unexpected package '$1'" >&2 exit 1 ;; esac