08:18 <Zoffix> .tell tyil you have several bugs in your Appsixt module. Variables inside «» gets split on spaces within their values so, say, spaces in paths will break the path into separate args (`my $source = 'bar ber'.IO; dd «foo {$source.IO.path}»;`): https://gist.github.com/Whateverable/576bc17fe1eb2c081819a4e13e4a7f26
As pointed out by @zoffix, the variables used inside « » will be split on spaces, hence it can break on paths with spaces in them. Adding quotes in the right place seems to fix the issue:
As pointed out by @zoffix, the variables used inside
« »
will be split on spaces, hence it can break on paths with spaces in them. Adding quotes in the right place seems to fix the issue: