-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prevent always detecting out-of-sync rancher plist file (#99)
@JDuskey and @rachelkathleen were seeing the rancher step always saying "The PLIST file is out of sync": ``` DBUG: File /Users/<redacted>/Library/Preferences/io.rancherdesktop.profile.defaults.plist does not match source DBUG: The PLIST file is out of sync. ``` This is happening because the install step makes changes to the PLIST file, but the test step is comparing based on the original file - so it never takes those changes into account. This PR creates a temporary file, modifies it, and uses it for both the test and install steps.
- Loading branch information
Showing
3 changed files
with
43 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.58 | ||
0.1.59 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters