-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Dockerfiles to use rlfe instead of rlwrap
- Loading branch information
1 parent
4beceb4
commit 51f1a00
Showing
101 changed files
with
493 additions
and
1,185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
|
||
# This script acts as a replacement for "clj" script shipped with Clojure CLI | ||
# (tools.deps) installation. Original "clj" uses rlwrap to wrap "clojure" script | ||
# and provide line editing abilities. This script uses rlfe instead of rlwrap | ||
# for the same purpose. If rlfe is not installed, run regular "clojure" script. | ||
|
||
if type rlfe; then | ||
exec rlfe clojure "$@" | ||
else | ||
exec clojure "$@" | ||
fi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
|
||
# This script acts as a replacement for "clj" script shipped with Clojure CLI | ||
# (tools.deps) installation. Original "clj" uses rlwrap to wrap "clojure" script | ||
# and provide line editing abilities. This script uses rlfe instead of rlwrap | ||
# for the same purpose. If rlfe is not installed, run regular "clojure" script. | ||
|
||
if type rlfe; then | ||
exec rlfe clojure "$@" | ||
else | ||
exec clojure "$@" | ||
fi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
|
||
# This script acts as a replacement for "clj" script shipped with Clojure CLI | ||
# (tools.deps) installation. Original "clj" uses rlwrap to wrap "clojure" script | ||
# and provide line editing abilities. This script uses rlfe instead of rlwrap | ||
# for the same purpose. If rlfe is not installed, run regular "clojure" script. | ||
|
||
if type rlfe; then | ||
exec rlfe clojure "$@" | ||
else | ||
exec clojure "$@" | ||
fi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
|
||
# This script acts as a replacement for "clj" script shipped with Clojure CLI | ||
# (tools.deps) installation. Original "clj" uses rlwrap to wrap "clojure" script | ||
# and provide line editing abilities. This script uses rlfe instead of rlwrap | ||
# for the same purpose. If rlfe is not installed, run regular "clojure" script. | ||
|
||
if type rlfe; then | ||
exec rlfe clojure "$@" | ||
else | ||
exec clojure "$@" | ||
fi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
|
||
# This script acts as a replacement for "clj" script shipped with Clojure CLI | ||
# (tools.deps) installation. Original "clj" uses rlwrap to wrap "clojure" script | ||
# and provide line editing abilities. This script uses rlfe instead of rlwrap | ||
# for the same purpose. If rlfe is not installed, run regular "clojure" script. | ||
|
||
if type rlfe; then | ||
exec rlfe clojure "$@" | ||
else | ||
exec clojure "$@" | ||
fi |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.