oneElectron
oneElectron
I got tired of this too, but I didn't see this issue until I had already kind of made my solution, so I don't know if this solution is acceptable....
I kind of forgot to make a repo, but here it is: [https://github.com/oneElectron/brew-command-not-found](https://github.com/oneElectron/brew-command-not-found). I will eventually find a solution to the hack that is required to get it to work,...
@apainintheneck It does kind of surprise me that this might not be accepted into the main brew repo. I the only issue that I see with just having the formula...
Also I don't know anything about bash programming, so I can't really make that solution.
An alternative that I have already tested is to create an env variable ```CI=1``` which build.rs checks for and sets a cfg in rust. Any test that fails locally would...
The other method I see is to create a function ```fn quit_if_not_ci()```, and call it in any test that fails locally. This is (at least to me) not the most...
I found a way to fix it, I removed windowDic["kCGWindowAlpha"] as! Int == 1 from line 135 in AmongKeyApp.swift that seems to have solved the problem, i know that it...
Ok the ```env``` macro sounds nice. I would like to contribute to sudo-rs so maybe I could write fix this myself. I like to env variable idea but the other...
Currently my preferred solution is to mark any tests that might fail on a local system with ```#[ignore = "ci"]```. In .github/workflows/ci.yaml there must be a ```-- --include-ignored``` to any...