OSX: Fix RunAtLoad value in plist file.

This commit is contained in:
Joey Hess 2012-11-15 01:01:54 -04:00
parent 3907e46c13
commit d3766803b4
3 changed files with 3 additions and 0 deletions

View file

@ -38,6 +38,7 @@ genOSXAutoStartFile label command params = unlines
, unlines $ map (\v -> "<string>" ++ v ++ "</string>") (command:params) , unlines $ map (\v -> "<string>" ++ v ++ "</string>") (command:params)
, "</array>" , "</array>"
, "<key>RunAtLoad</key>" , "<key>RunAtLoad</key>"
, "<true/>"
, "</dict>" , "</dict>"
, "</plist>" , "</plist>"
] ]

1
debian/changelog vendored
View file

@ -5,6 +5,7 @@ git-annex (3.20121113) UNRELEASED; urgency=low
* webapp: The list of repositiories refreshes when new repositories are * webapp: The list of repositiories refreshes when new repositories are
added, including when new repository configurations are pushed in from added, including when new repository configurations are pushed in from
remotes. remotes.
* OSX: Fix RunAtLoad value in plist file.
-- Joey Hess <joeyh@debian.org> Tue, 13 Nov 2012 13:17:07 -0400 -- Joey Hess <joeyh@debian.org> Tue, 13 Nov 2012 13:17:07 -0400

View file

@ -12,3 +12,4 @@ It should say:
`<key>RunAtLoad</key>`<br> `<key>RunAtLoad</key>`<br>
`<true/>` `<true/>`
> Fixed in git. [[done]] --[[Joey]]