diff options
author | Colin Okay <okay@toyful.space> | 2022-02-28 16:46:18 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-02-28 16:46:18 -0600 |
commit | 25e2a94a82b325f74f7f297104be275419d6928e (patch) | |
tree | 340d35685c66212cb0400d29af6a45d5164df61a | |
parent | 260d0cfae03e75c298fd4b349ff496f35bd76143 (diff) |
new default host in fresh config
-rw-r--r-- | oneliners.cli.asd | 3 | ||||
-rw-r--r-- | src/lib.lisp | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/oneliners.cli.asd b/oneliners.cli.asd index 7887011..f7b4a4c 100644 --- a/oneliners.cli.asd +++ b/oneliners.cli.asd @@ -9,8 +9,7 @@ "osicat" "net.didierverna.clon" "cl-readline" - ;"linedit" - "magic-ed" + "magic-ed" "oneliners.api-client") :components ((:module "src" :components diff --git a/src/lib.lisp b/src/lib.lisp index 93a19aa..a4254eb 100644 --- a/src/lib.lisp +++ b/src/lib.lisp @@ -37,7 +37,7 @@ (setf *config* (make-config :host (prompt "Oneliner Instance Host: " - :prefill "https://oneliners.wiki") + :prefill "https://api.oneliners.wiki") :shell (prompt "With which shell should commands be run: " :prefill "bash"))) (write-config-to-disk) |