coolercontrol can't be installed. Error in .just file
I'm havin this error (https://discord.com/channels/1072614816579063828/1074422586894712912/1435022682193399908) and ujust update didn't fix this. I was digging a little in the
82-bazzite-apps.just file and there's a small error in line 55:
if ( ! grep -q "enabled=0" "$repopath" ); then # if not matches found
The variable is actually named repo_path, so it should be:
if ( ! grep -q "enabled=0" "$repo_path" ); then # if not matches found
With the error, the repo never gets enabled1 Reply
Made a PR for this: https://github.com/ublue-os/bazzite/pull/3435
GitHub
Fix(ujust): Correct typo in variable for coolercontrol by biebel ·...
There was a typo in a variable that lead to the repo not getting enabled.