diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-03-07 23:23:16 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-03-07 23:23:16 +0100 |
commit | 4556a377fc46fdacea774e4600a0f29a734cfccf (patch) | |
tree | 6c8392e10405ed34262f41f581df0ef6ceaa5cfb /bin | |
parent | 499c57e32c07d47e72f8ed584279605df6495b0f (diff) |
added anti-double quote for ask
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/common/ask | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/common/ask b/bin/common/ask index 0f49a99..d3d9dec 100755 --- a/bin/common/ask +++ b/bin/common/ask @@ -12,7 +12,7 @@ else prompt="$@" fi -prompt="$(echo "$prompt" | tr "\n\t" ' ')" +prompt="$(echo "$prompt" | tr "\n\t" ' ' | tr '"' "")" API_KEY="$(pass tokens/openai-api)" |