Skip to content

Commit

Permalink
Omit without-roswell=t option.
Browse files Browse the repository at this point in the history
  • Loading branch information
fukamachi committed Nov 2, 2023
1 parent a8b939c commit d917a4a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/qlot-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/qlot-uninstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d917a4a

Please sign in to comment.