mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-07-20 19:55:10 +02:00
style: use -n flag in head and tail commands (#10391)
Co-authored-by: Marc Cornellà <hello@mcornella.com>
This commit is contained in:
co-authored by
Marc Cornellà
parent
55682e3692
commit
e86c6f5e7f
+1
-1
@@ -270,7 +270,7 @@ fi
|
||||
|
||||
# Determine the last recorded directory
|
||||
if [[ -s ${SCD_HISTFILE} ]]; then
|
||||
last_directory=${"$(tail -1 ${SCD_HISTFILE})"#*;}
|
||||
last_directory=${"$(tail -n 1 ${SCD_HISTFILE})"#*;}
|
||||
fi
|
||||
|
||||
# The "record" function adds its arguments to the directory index.
|
||||
|
||||
Reference in New Issue
Block a user