mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2025-01-13 20:37:51 +02:00
ec0f7bdacb
While zsh accepts the following code: ``` local paths=(${(s:/:)${1//"~\/"/}}) ``` Travis fails unless it is ``` local paths=$1 paths=(${(s:/:)${paths//"~\/"/}}) ```