Frank Ray

Results 203 comments of Frank Ray

Hi @devlead, I recreated and tested the bug report above, and as suggested in your response, I believe it's working as documented. When making the following call: `CopyFile("./src/a/a.txt", "./dst");` It...

Leaving a comment as required @augustoproiete - I'll now wait to see if @tapika responds.

Hi @augustoproiete, can I please take this issue (https://github.com/cake-build/cake/issues/3280) and also the closely related https://github.com/cake-build/cake/issues/3279 ?

nb. I've come across the following spectre issue (https://github.com/spectreconsole/spectre.console/issues/203) when working on this issue, although it's not a blocker it is relevant as I would expect command line flags to...

I have just repo'd this issue and duplicate warning messages are still appearing on the most recent cake version (ie. 2.2.0), see: ![image](https://user-images.githubusercontent.com/52075808/188695337-065824a2-89ef-4747-ab74-fbd3226bc878.png)

Turning off bootstrapping eliminates the second (duplicate) message, see: ![image](https://user-images.githubusercontent.com/52075808/189650230-c3ca9fb3-29f8-4ea8-9c00-56bae6b64ceb.png) Basically, ScriptAnalyzer.Analyze(...) is being called twice, first by `BootStrapFeature.Run(...)` and then later by `BuildFeature.Run(...)` Here is the culprit, Line 102...

Hello @devlead, I have merged changes from `sbwaggoner:feature-addition-target-initializer-msbuildsettings` (which are now many commits behind) onto a local, up-to-date `develop` branch and intend to consider your review comments above. I've been...

I get the same (although I compiled my using the bash script) ![image](https://user-images.githubusercontent.com/52075808/178772268-3158fa11-a4af-498b-8de0-2f63d7531591.png)

I will check in a bit. I was experiencing build issues with kernel 5.4.3 as outlined here: https://www.reddit.com/r/archlinux/comments/pl9pak/compiling_older_versions_of_the_kernel_using/ (I'm using 5.15.0-41-generic on Ubuntu) and so have specified the latest 5.4.X...

The `CommandExecutor.Execute(...)` method (which the first code snippet above from @tapika was taken from) does explicitly handle the `-v|--version` argument: ``` // No default command? if (model.DefaultCommand == null) {...