mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
Disable cache
This commit is contained in:
parent
05997908e5
commit
f52ff730b1
@ -25,6 +25,7 @@ async function gitHubLatestRelease() {
|
||||
if (error) {
|
||||
reject(error);
|
||||
} else if (response.statusCode !== 200) {
|
||||
console.warn(data);
|
||||
reject(new Error('Error HTTP ' + response.statusCode));
|
||||
} else {
|
||||
resolve(data);
|
||||
@ -67,7 +68,7 @@ async function main(argv) {
|
||||
if (!waitForVersion) break;
|
||||
|
||||
if (release.tag_name !== waitForVersion) {
|
||||
await msleep(15000);
|
||||
await msleep(60000 * 5);
|
||||
} else {
|
||||
console.info('Got version ' + waitForVersion);
|
||||
break;
|
||||
|
@ -3,7 +3,7 @@ image: Visual Studio 2017
|
||||
platform:
|
||||
- x64
|
||||
|
||||
cache:
|
||||
# cache:
|
||||
# Not caching node_modules because appveyor doesn't restore it afterwards (not sure why)
|
||||
# - node_modules
|
||||
# - '%USERPROFILE%\.electron'
|
||||
|
Loading…
Reference in New Issue
Block a user