From d917a4a83f5caf98c67d7a28318328122ed027ca Mon Sep 17 00:00:00 2001 From: Eitaro Fukamachi Date: Thu, 2 Nov 2023 11:23:21 +0000 Subject: [PATCH] Omit without-roswell=t option. --- scripts/fetch.sh | 2 +- scripts/qlot-installer.sh | 2 +- scripts/qlot-uninstaller.sh | 2 +- scripts/run.sh | 2 +- scripts/setup.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/fetch.sh b/scripts/fetch.sh index c463be50..6b10f093 100755 --- a/scripts/fetch.sh +++ b/scripts/fetch.sh @@ -4,7 +4,7 @@ QLOT_SOURCE_DIR=$(cd "$(dirname "$0")/../" 2>&1 && pwd -P) errmsg() { echo -e "\e[31mError: $1\e[0m" >&2; } if [ "$(which ros 2>/dev/null)" != "" ]; then - lisp="ros without-roswell=t -L sbcl-bin run --" + lisp="ros +Q -L sbcl-bin run --" elif [ "$(which sbcl 2>/dev/null)" != "" ]; then lisp="sbcl" else diff --git a/scripts/qlot-installer.sh b/scripts/qlot-installer.sh index ce6fa6ea..839f2457 100755 --- a/scripts/qlot-installer.sh +++ b/scripts/qlot-installer.sh @@ -41,7 +41,7 @@ check_requirement "which" if [ "$(which sbcl 2>/dev/null)" != "" ]; then lisp="sbcl" elif [ "$(which ros 2>/dev/null)" != "" ]; then - lisp="ros without-roswell=t -L sbcl-bin run --" + lisp="ros +Q -L sbcl-bin run --" else errmsg "sbcl is required to setup Qlot." exit 1 diff --git a/scripts/qlot-uninstaller.sh b/scripts/qlot-uninstaller.sh index d1261d65..1ad8213b 100755 --- a/scripts/qlot-uninstaller.sh +++ b/scripts/qlot-uninstaller.sh @@ -11,7 +11,7 @@ fi if [ "$(which sbcl 2>/dev/null)" != "" ]; then lisp="sbcl" elif [ "$(which ros 2>/dev/null)" != "" ]; then - lisp="ros without-roswell=t -L sbcl-bin run --" + lisp="ros +Q -L sbcl-bin run --" else exit fi diff --git a/scripts/run.sh b/scripts/run.sh index 26bc6375..64fb722c 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -13,7 +13,7 @@ check_qlot_directory() { errmsg() { echo -e "\e[31mError: $1\e[0m" >&2; } if [ "$(which ros 2>/dev/null)" != "" ]; then - lisp="ros without-roswell=t -L sbcl-bin run --" + lisp="ros +Q -L sbcl-bin run --" elif [ "$(which sbcl 2>/dev/null)" != "" ]; then lisp="sbcl" else diff --git a/scripts/setup.sh b/scripts/setup.sh index b6dfb651..c74d76c4 100755 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -6,7 +6,7 @@ QLOT_SOURCE_DIR=$(cd "$(dirname "$0")/../" 2>&1 >/dev/null && pwd -P) errmsg() { echo -e "\e[31mError: $1\e[0m" >&2; } if [ "$(which ros 2>/dev/null)" != "" ]; then - lisp="ros without-roswell=t -L sbcl-bin run --" + lisp="ros +Q -L sbcl-bin run --" elif [ "$(which sbcl 2>/dev/null)" != "" ]; then lisp="sbcl" else