From 2badce8cafadf4000164d56ee8e801e2e3a8d310 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau Date: Mon, 31 Aug 2015 15:10:45 -0400 Subject: [PATCH] asdf-tools: skip init files --- tools/asdf-tools | 4 ++-- tools/asdf-tools.bat | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/asdf-tools b/tools/asdf-tools index 5ca7ff46..76b2a4ca 100755 --- a/tools/asdf-tools +++ b/tools/asdf-tools @@ -1,9 +1,9 @@ -":" ; exec ${CCL:-ccl} --load "$0" -- "$@" ; exit # -*- Lisp -*- +":" ; exec ${CCL:-ccl} --no-init --load "$0" -- "$@" ; exit # -*- Lisp -*- #| asdf-tools could also run on SBCL, or on any decent Common Lisp implementation, including using cl-launch, but CCL is the single implementation that has decent portable support on all of Windows, Linux (x64, x86, ARM), MacOS X -":" ; exec ${SBCL:-sbcl} --script "$0" "$@" ; exit +":" ; exec ${SBCL:-sbcl} --no-userinit --no-sysinit --script "$0" "$@" ; exit ":" ; cl-launch -l ccl -Q -sp asdf-tools -r entry-point -- "$@" |# diff --git a/tools/asdf-tools.bat b/tools/asdf-tools.bat index 83b9d495..59b2ef17 100644 --- a/tools/asdf-tools.bat +++ b/tools/asdf-tools.bat @@ -1,3 +1,3 @@ @echo off if "%CCL%" == "" set CCL=ccl -%CCL% --load %~dp0\asdf-tools -- %* +%CCL% --no-init --load %~dp0\asdf-tools -- %* -- GitLab