From 66577d06a0ff6d8bd361a2d9f01b433036cb94d5 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Wed, 17 Jan 2024 21:25:15 -0600 Subject: [PATCH] changed: install script to delete `tests` directory --- bin/install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/install.sh b/bin/install.sh index b97b2c62..fad8592e 100755 --- a/bin/install.sh +++ b/bin/install.sh @@ -390,6 +390,9 @@ onyx_download() { mkdir -p $INSTALL_DIRECTORY + # Remove old tests directory that should not be shipped with the toolchain anymore + rm -rf $INSTALL_DIRECTORY/tests 2>/dev/null + # Untar the Onyx contents in the install directory tar -C $INSTALL_DIRECTORY -zxf $DOWNLOAD_FILE @@ -444,4 +447,4 @@ else INSTALL_DIRECTORY="${ONYX_DIR}" fi -onyx_install $1 # $2 \ No newline at end of file +onyx_install $1 # $2 -- 2.25.1