(path, opts)
| 21 | }; |
| 22 | |
| 23 | function ls(path, opts) { |
| 24 | opts = opts || {}; |
| 25 | opts.options = opts.options || {}; |
| 26 | try { |
| 27 | return cash.ls(path, opts); |
| 28 | } catch (e) { |
| 29 | console.log(e); |
| 30 | throw e; |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | // Appveyor creates some problems |
| 35 | // that I can't reproduce on any Windows |