anotherim-desktop/plugins/windows-notification/prepare-yolort.sh

12 lines
459 B
Bash
Raw Normal View History

2021-06-19 11:13:39 +00:00
#!/bin/bash
export FILE_NAME=cppwinrt-2.0.210122.3+windows-10.0.19041+yolort-835cd4e.zip
2021-06-19 11:13:39 +00:00
export ORIGINAL_FOLDER=${PWD}
mkdir -p yolort && \
cd yolort && \
curl -L -O https://github.com/LAGonauta/YoloRT/releases/download/v1.0.0/${FILE_NAME} && \
2023-02-12 14:17:57 +00:00
echo "675a6d943c97b4acdbfaa473f68d3241d1798b31a67b5529c8d29fc0176a1707 ${FILE_NAME}" | sha256sum --check --status && \
unzip -o ${FILE_NAME} && \
rm ${FILE_NAME} && \
cd ${ORIGINAL_FOLDER}