From a3222dccbd7021d346aba15d8a7bc1e942170143 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20Vallv=C3=A9=20Navarro?= <jvallve@iri.upc.edu> Date: Fri, 21 Jan 2022 12:33:21 +0100 Subject: [PATCH] removed auto script not necessary --- README.md | 4 +--- auto_script_wolf | 56 ------------------------------------------------ 2 files changed, 1 insertion(+), 59 deletions(-) delete mode 100755 auto_script_wolf diff --git a/README.md b/README.md index 0116b6f..dd8d31c 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,4 @@ This repository has an script to install the wolf library (core and plugins) along with its dependencies. -This project is not meant to be cloned but to download the script (``install_wolf.sh``). - -The ``expect`` script ``auto_script_wolf`` is used by the continuous integration to test the installation script in different ubuntu distributions. \ No newline at end of file +This project is not meant to be cloned but to download the script (``install_wolf.sh``). \ No newline at end of file diff --git a/auto_script_wolf b/auto_script_wolf deleted file mode 100755 index a59c6f5..0000000 --- a/auto_script_wolf +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/expect - -set timeout -1 - -spawn ./install_wolf.sh -e - -expect "Enter path for dependencies (either /global/path or relative/path):\r" - -send -- ".\r" - -expect "Enter path for wolf folder (either /global/path or relative/path):\r" - -send -- ".\r" - -expect "Do you want to download and install plugin imu? (y/n)\r" - -send -- "y\r" - -expect "Do you want to download and install plugin gnss? (y/n)\r" - -send -- "y\r" - -expect "Do you want to download and install plugin laser? (y/n)\r" - -send -- "y\r" - -expect "Do you want to install CSM to enable ICP processors? (y/n)\r" - -send -- "y\r" - -expect "Do you want to install FALKO to enable Falko loop closure processors? (y/n)\r" - -send -- "y\r" - -expect "Do you want to download and install plugin vision (requires to install opencv 3.3.0)? (y/n)\r" - -send -- "y\r" - -expect "Do you want to download and install plugin apriltag? (y/n)\r" - -send -- "y\r" - -expect "Do you want to download and install plugin bodydynamics? (y/n)\r" - -send -- "y\r" - - - - - - - - - - -expect eof -- GitLab