mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
rake-fast: change variable name from $path' to
$file'
This solves a problem of using the variable name `$path' which then smashes the environment variable `$PATH' and messes up the session. See https://github.com/robbyrussell/oh-my-zsh/pull/5343#issuecomment-243043098
This commit is contained in:
parent
59fdb2b505
commit
abf73bb626
1 changed files with 4 additions and 4 deletions
|
@ -7,11 +7,11 @@ _is_rails_app () {
|
|||
}
|
||||
|
||||
_tasks_changed () {
|
||||
local -a paths
|
||||
paths=(lib/tasks lib/tasks/**/*(N))
|
||||
local -a files
|
||||
files=(lib/tasks lib/tasks/**/*(N))
|
||||
|
||||
for path in $paths; do
|
||||
if [[ "$path" -nt .rake_tasks ]]; then
|
||||
for file in $files; do
|
||||
if [[ "$file" -nt .rake_tasks ]]; then
|
||||
return 0
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue