mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-08-07 06:08:39 +02:00
fix: start from index one
This commit is contained in:
parent
4a3460a96d
commit
c6e928c160
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ remove_flags() {
|
||||||
build_message () {
|
build_message () {
|
||||||
local argv=("$@")
|
local argv=("$@")
|
||||||
local argc=${#@}
|
local argc=${#@}
|
||||||
local i=0
|
local i=1
|
||||||
|
|
||||||
while [[ $i -lt $argc ]];
|
while [[ $i -lt $argc ]];
|
||||||
do
|
do
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue