You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not sure whether this is the right module for this piece of code. But I am looking for your advice.
On Windows I run into trouble because run() does not work as I expected it from my linux boxes.
Example: on the windows shell you can invoke prove ..... and it works, but with run() you can't because it in fact it is a prove.bat that you're invoking.
So it is hard to write platform independend code. (e.g. skaji/mi6#40) This piece is stolen from zef.
my @run-invoke = BEGIN $*DISTRO.is-win ?? <cmd.exe /x/d/c>.Slip !! '';
sub zrun(*@_, *%_) is export { run (|@run-invoke, |@_).grep(*.?chars), |%_ }
The text was updated successfully, but these errors were encountered:
I am not sure whether this is the right module for this piece of code. But I am looking for your advice.
On Windows I run into trouble because
run()does not work as I expected it from my linux boxes.Example: on the windows shell you can invoke
prove .....and it works, but withrun()you can't because it in fact it is aprove.batthat you're invoking.So it is hard to write platform independend code. (e.g. skaji/mi6#40) This piece is stolen from zef.
The text was updated successfully, but these errors were encountered: