davidrjonas

Results 7 comments of davidrjonas

I'm going to have to read more about how git works with windows paths before I can make a call here. Is it just the case that git always uses...

That's a great idea. I've never used github actions so it may take me some time to get to it. If you have time to add a github action I'd...

The solution I use (replace the 0's with the ID of your lastpass entry), *~/bin/start-aws* ```bash #!/usr/bin/expect -f set pw [exec lpass show --password 000000000] spawn aws-google-auth --save-failure-html expect "Google...

Thanks! I like this idea very much. I’m not sure when I’ll have time to implement, however. PR welcome! I hadn’t seen that feature of private packagist. That is very...

Thanks for the diff! I'd like to implement this a little differently though. The information is read from exactly the same file path, vcs or not, with the extension changed...

Thank you! I like the idea. I think the difficulty will be in making it work correct in most situations without depending on an external package. Detecting a tty is...

Git is run in a Bourne Shell (`sh`) like this: ```php exec('sh -c "git --version" > /dev/null 2>&1', $_out, $exit); ``` If your mingw64 doesn't have `sh` in the path...