From c1f3defed9b0706a81b535608d7c00654c8c0bfc Mon Sep 17 00:00:00 2001 From: Jack Back Date: Tue, 26 Mar 2024 18:19:00 +0100 Subject: [PATCH] build: more docker tests --- .gitea/scripts/ci.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/scripts/ci.sh b/.gitea/scripts/ci.sh index 007e77d..e25e7ae 100755 --- a/.gitea/scripts/ci.sh +++ b/.gitea/scripts/ci.sh @@ -29,12 +29,14 @@ curl -L -o "${TEMP_DIR}/oat-linux.tar.gz" "$DOWNLOAD_URL" tar -xzf "${TEMP_DIR}/oat-linux.tar.gz" -C "${TEMP_DIR}" # Copy the executables to /usr/local/bin and make them executable -cp "${TEMP_DIR}/Linker" "${TEMP_DIR}/Unlinker" /usr/local/bin/ -chmod +x /usr/local/bin/Linker /usr/local/bin/Unlinker +cp "${TEMP_DIR}/Linker" "${TEMP_DIR}/Unlinker" . +chmod +x Linker Unlinker # Clean up temporary directory rm -rf "$TEMP_DIR" echo "OpenAssetTools version $OAT_VERSION has been installed." -Linker --help +file Linker +file Unlinker +./Linker --help