File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ The result will be faster and more lightweight than any other solution out there
12
12
- Pulls the latest release data from [ GitHub Releases] ( https://help.github.com/articles/creating-releases/ ) and caches it in memory
13
13
- Refreshes the cache every ** 15 minutes** (custom interval [ possible] ( #options ) )
14
14
- When asked for an update, it returns the link to the GitHub asset directly (saves bandwidth)
15
- - Supports ** macOS** and ** Windows ** apps
15
+ - Supports ** macOS** , ** Windows ** , and ** Linux ** apps
16
16
17
17
## Usage
18
18
Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ module.exports = ({ cache, config }) => {
49
49
platform = 'dmg'
50
50
} else if ( userAgent . isWindows ) {
51
51
platform = 'exe'
52
+ } else if ( userAgent . isLinux ) {
53
+ platform = 'AppImage'
52
54
}
53
55
54
56
// Get the latest version from the cache
You can’t perform that action at this time.
0 commit comments