functions.zsh: fix typo in timesh()

This commit is contained in:
surtur 2022-10-18 13:53:01 +02:00
parent 26089f154f
commit 8450b2bc06
Signed by: wanderer
SSH Key Fingerprint: SHA256:MdCZyJ2sHLltrLBp0xQO0O1qTW9BT/xl5nXkDvhlMCI

@ -33,7 +33,7 @@ upload() {
timesh() { timesh() {
shell=${1-$SHELL} shell=${1:-$SHELL}
for i in $(seq 1 10); do /usr/bin/time $shell -i -c exit; done for i in $(seq 1 10); do /usr/bin/time $shell -i -c exit; done
} }