Skip to content

Commit

Permalink
Fixing build on GitHub workers.
Browse files Browse the repository at this point in the history
  • Loading branch information
macmade committed Sep 19, 2021
1 parent c016c8a commit 3dda391
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Hot/Classes/ApplicationDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@ class ApplicationDelegate: NSObject, NSApplicationDelegate
return .orange
}

if let pressure = self.infoViewController?.thermalPressure,
let pressure = ProcessInfo.ThermalState( rawValue: pressure ),
pressure != .nominal
if let rawPressure = self.infoViewController?.thermalPressure,
let pressure = ProcessInfo.ThermalState( rawValue: rawPressure ),
pressure != .nominal
{
return .orange
}
Expand Down
2 changes: 1 addition & 1 deletion Hot/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>1.4.0</string>
<key>CFBundleVersion</key>
<string>67</string>
<string>69</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down

0 comments on commit 3dda391

Please sign in to comment.