While zsh accepts the following code:
```
local paths=(${(s:/:)${1//"~\/"/}})
```
Travis fails unless it is
```
local paths=$1
paths=(${(s:/:)${paths//"~\/"/}})
```
|
||
|---|---|---|
| .. | ||
| colors.zsh | ||
| icons.zsh | ||
| utilities.zsh | ||
| vcs.zsh | ||
While zsh accepts the following code:
```
local paths=(${(s:/:)${1//"~\/"/}})
```
Travis fails unless it is
```
local paths=$1
paths=(${(s:/:)${paths//"~\/"/}})
```
|
||
|---|---|---|
| .. | ||
| colors.zsh | ||
| icons.zsh | ||
| utilities.zsh | ||
| vcs.zsh | ||