removed placeholder text in prompt

cd no longer panics if the given directory doesn't exist (wtf?)
This commit is contained in:
2025-05-29 01:29:25 -04:00
parent 4465a4f6f6
commit 220f636ebd
6 changed files with 37 additions and 7 deletions

View File

@@ -15,7 +15,7 @@ pub fn source(node: Node, job: &mut JobBldr) -> ShResult<()> {
return Err(
ShErr::full(
ShErrKind::ExecFail,
"source: File not found",
format!("source: File '{}' not found",path.display()),
span
)
);
@@ -24,7 +24,7 @@ pub fn source(node: Node, job: &mut JobBldr) -> ShResult<()> {
return Err(
ShErr::full(
ShErrKind::ExecFail,
"source: Given path is not a file",
format!("source: Given path '{}' is not a file",path.display()),
span
)
);