summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-02-08 14:07:08 -0600
committerAlejandro Soto <alejandro@34project.org>2024-02-08 14:07:08 -0600
commit4be1f8eb2064c1362f58b1668ee5b27813496a03 (patch)
tree972b28301589669d7437c5e7c5756c8381731137
parent27fa76fc59948950e23313ed24fb3996ca5186c4 (diff)
home/zshrc: update spawn error message
-rw-r--r--home/zshrc.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/home/zshrc.nix b/home/zshrc.nix
index ec231f5..1c61df4 100644
--- a/home/zshrc.nix
+++ b/home/zshrc.nix
@@ -9,7 +9,7 @@
function spawn() {
if [ ! -x "$(command -v $1)" ]; then
- echo "spawn: no such shit: $1" >&2
+ echo "spawn: no such command: $1" >&2
return 1
fi