Samir Alajmovic
Samir Alajmovic
There's no flag for specific git commands, but you can override it easily: ``` projects: pinto: path: frontend/pinto url: https://github.com/alajmo/pinto clone: git clone ${MANI_PROJECT_URL} --branch feat/switch-ui dashgrid: path: frontend/dashgrid/../dashgrid url:...
I like this feature, but as mentioned in the other issue, it's quite a complex task and I wouldn't want to add the `allowAutomaticOverride` since people would first stumble upon...
There's some work left to be done on `sake` before I can bring back changes to `mani` (which includes this feature). Though, not sure about the timeline when I'll be...
Good idea, not sure which way to go of the proposed options: 1. make the `url` property a string or array, with the first entry being the default remote 2....
I've added the ability to sync remotes now as well. For instance: ```yaml projects: mani: url: [email protected]:alajmo/mani remotes: another: https://github.com/mani-version-2 ``` If there is another remote with the same name,...
Great find, I need to implement the LookupIP method you provided. Just to be safe, does it work as intended when you paste the IP directly?
What's your local resolver? It works for me without any changes, I have my nameserver set to my pi-hole: /etc/resolv.conf ``` local resolver domain lan search lan nameserver 192.168.1.209 ```...
It seems you can set the resolver in the Dial function https://stackoverflow.com/questions/30043248/why-golang-lookup-function-cant-provide-a-server-parameter, I will investigate this a bit further (cheers for all the investigation you did), but it would be...
I've read a bit more and it seems: - Couldn't find any 3rd party libraries to resolve this - `CGO_ENABLED` is set to 1 by default - It only affects...
sake does not yet support interactive shells, it's something on the roadmap but no timeline available atm since I'm swamped with other stuff. The `tty` parameter just means that the...