JsonHunt / save-commands

Assign parametrized shell commands to file globs to be automatically run whenever the file is saved
MIT License
20 stars 11 forks source link

split on ':' has undesired side effects #19

Closed iggy closed 8 years ago

iggy commented 9 years ago

If you put any command that has a : in it, you end up losing everything after the second :

This notably breaks rsync commands.

iggy commented 9 years ago

I guess I should mention I worked around this by changing the split to ' : ' () (which I already had in all my command lines from looking at the docs).

JsonHunt commented 8 years ago

fixed