mirror of
https://github.com/jimeh/build-emacs-for-macos.git
synced 2026-02-19 08:26:39 +00:00
This will be used by the jimeh/homebrew-emacs-builds brew tap repository in combination with brew livecheck to automatically update cask formulas to the latest nightly builds from the jimeh/emacs-builds repository.
14 lines
341 B
Go
14 lines
341 B
Go
package cask
|
|
|
|
type LiveCheck struct {
|
|
Cask string `json:"cask"`
|
|
Version LiveCheckVersion `json:"version"`
|
|
}
|
|
|
|
type LiveCheckVersion struct {
|
|
Current string `json:"current"`
|
|
Latest string `json:"latest"`
|
|
Outdated bool `json:"outdated"`
|
|
NewerThanUpstream bool `json:"newer_than_upstream"`
|
|
}
|