diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2025-02-12 20:02:14 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2025-02-12 20:02:14 -0800 |
commit | b39cd46c89139ac9bb42bdd8be96e301e296738f (patch) | |
tree | be397ba8823e249dbc74c05fdcc93dcbe5107eb4 | |
parent | b3c0288a9b245993c8b220f61ded7b2c964709a8 (diff) | |
download | cdlog-b39cd46c89139ac9bb42bdd8be96e301e296738f.tar.gz cdlog-b39cd46c89139ac9bb42bdd8be96e301e296738f.tar.bz2 cdlog-b39cd46c89139ac9bb42bdd8be96e301e296738f.zip |
Issue successful status out of cdlog.recover.
* cdlog.sh (cdlog.recover): return 0, because the [ $print ]
test in the previous line can fail, leaving the function with
a failed termination status.
-rw-r--r-- | cdlog.sh | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -182,6 +182,7 @@ cdlog.recover() fi [ $print ] && printf "%s\n" "$PWD" + return 0 } # Resolve @ search item to number |