projects
/
selector.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7da4fa5
)
Prune the cd history only if there was no error.
author
Francois Fleuret
<francois@fleuret.org>
Tue, 12 May 2015 16:09:10 +0000
(18:09 +0200)
committer
Francois Fleuret
<francois@fleuret.org>
Tue, 12 May 2015 16:09:10 +0000
(18:09 +0200)
bash-selector.sh
patch
|
blob
|
history
diff --git
a/bash-selector.sh
b/bash-selector.sh
index
7cb749c
..
dc7373b
100755
(executable)
--- a/
bash-selector.sh
+++ b/
bash-selector.sh
@@
-72,8
+72,8
@@
function selector-cd () {
if [[ -f "${SELECTOR_CD_HISTORY}" ]]; then
TMP=$(mktemp /tmp/selector-cd.XXXXXX)
- tail -$((SELECTOR_CD_HISTORY_SIZE-1)) < "${SELECTOR_CD_HISTORY}" > "${TMP}"
- cat "${TMP}" > "${SELECTOR_CD_HISTORY}"
+ tail -$((SELECTOR_CD_HISTORY_SIZE-1)) < "${SELECTOR_CD_HISTORY}" > "${TMP}"
&& \
+
cat "${TMP}" > "${SELECTOR_CD_HISTORY}"
\rm -f "${TMP}"
fi