Skip to content

Commit

Permalink
fix rancher plist file (Version -> version) (#76)
Browse files Browse the repository at this point in the history
The instructions said:
> For macOS, add <key>Version</key><integer>10</integer> after the
initial <dict> tag.

Turns out that actually needs to be lowercase `version` or rancher will
throw this error:

![image](https://github.com/ConsultingMD/homebrew-ih-public/assets/67805647/67e1b949-a98c-4722-8063-4ebeebc7ef92)
  • Loading branch information
pb-dod authored Jan 9, 2024
1 parent 126893d commit f914679
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.38
0.1.39
2 changes: 1 addition & 1 deletion formula/ih-core.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class IhCore < Formula
VERSION="0.1.38"
VERSION="0.1.39"
desc "Brew formula for installing core tools used at Included Health engineering."
homepage "https://github.com/ConsultingMD/homebrew-ih-public"
license "CC BY-NC-ND 4.0"
Expand Down
3 changes: 2 additions & 1 deletion lib/core/rancher/io.rancherdesktop.profile.defaults.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Version</key><integer>10</integer>
<key>version</key>
<integer>10</integer>
<key>WSL</key>
<dict>
<key>integrations</key>
Expand Down

0 comments on commit f914679

Please sign in to comment.