2021-06-19 11:13:39 +00:00
|
|
|
#!/bin/bash
|
2021-06-19 14:43:12 +00:00
|
|
|
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}
|
|
|
|
|
2021-06-19 14:43:12 +00:00
|
|
|
mkdir -p yolort && \
|
|
|
|
cd yolort && \
|
|
|
|
curl -L -O https://github.com/LAGonauta/YoloRT/releases/download/v1.0.0/${FILE_NAME} && \
|
|
|
|
unzip -o ${FILE_NAME} && \
|
|
|
|
rm ${FILE_NAME} && \
|
|
|
|
cd ${ORIGINAL_FOLDER}
|