Samir Alajmovic
Samir Alajmovic
I would like it to work with everything that's supported in ssh (and I try to follow their semantics as much as possible), and will try to implement as much...
Great, thanks for the feature suggestion and finding another small issue with the capitalization.
Fixed to support lowercase (as ssh does) attributes.
Not sure I follow, do you mean something like this: ```yaml servers: name: server-1 inventory: echo $SOME_ENV ``` ```bash $ sake run ping -s server-1 SOME_ENV="192.168.1.1,192.168.1.2" ``` which would run...
All features are released with [v0.12.0](https://github.com/alajmo/sake/releases/tag/v0.12.0) now. @josegonzalez you can now run the following: ```yaml servers: inv: inventory: ./some-python-script $somearg env: somearg: 192.168.1.2 ``` ```bash # use default somearg 192.168.1.2...
> I get that point. But then there should be a way to see which one is overwritten (maybe a flag to check the config). The worst case scenario is...
Should be fixed now with v0.10.3, please re-open if the issue persists.
Haven't decided yet, initially it was meant as a play on words with regards to `make` (s for server), so it would be for Pete's `sake` in that case. But...
I included a fix to this issue, if it's not merged, you can link it locally, just make these changes: ```ts async function sendToServer(url: URL): Promise { if (url.href.includes('/_favicon/')) {...
I like the simplicity of using tape for testing, it works both in the browser and node and we can avoid having one more config file. One more question, should...