chengsoonong / wib

A common interface to both git and hg
GNU General Public License v3.0
3 stars 2 forks source link

Cannot track files with spaces in name #8

Closed chengsoonong closed 7 years ago

chengsoonong commented 7 years ago

$ touch dummy\ file.txt $ wib track dummy\ file.txt fatal: pathspec 'dummy' did not match any files

chengsoonong commented 7 years ago

It seems that click's parsing of arguments already splits this and cannot be unsplit.

A workaround (added to README under FAQ) is to add quotes and to escape the spaces. E.g. wib track "test\ file\ with\ space.txt"