Phidica / sublime-fish

A robust Sublime Text syntax package for fish
MIT License
35 stars 2 forks source link

Number matching can be too greedy (for real this time) #10

Closed rwols closed 7 years ago

rwols commented 7 years ago
function svn-update-recursive
    find . -name ".svn" -type d | xargs -I '{}' dirname '{}' | xargs svn update
    #    ^ should not be constant.numeric
end