Skip to content

Commit f060549

Browse files
authored
Merge pull request #844 from particle-iot/chore/change-tachyon-meta-url
Chore/change tachyon meta url
2 parents c24810f + 85a895a commit f060549

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ let settings = {
4444
'tinker': true
4545
},
4646

47-
tachyonMeta: 'https://tachyon-ci.particle.io/meta',
47+
tachyonMeta: 'https://linux-dist.particle.io/meta',
4848
tachyonCacheLimitGB: 10
4949
};
5050

src/cmd/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const { platformForId } = require('../lib/platform');
1515

1616
const _ = require('lodash');
1717

18-
const DOCKER_CONFIG_URL = 'https://tachyon-ci.particle.io/alpha-assets/2ea71ce0afce170affb38d162a1e3460.json';
18+
const DOCKER_CONFIG_URL = 'https://linux-dist.particle.io/alpha-assets/2ea71ce0afce170affb38d162a1e3460.json';
1919
const PARTICLE_ENV_FILE = '.particle_env.yaml';
2020

2121
module.exports = class AppCommands extends CLICommandBase {

src/lib/download-manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class DownloadManager {
3333
}
3434
}
3535

36-
async fetchManifest({ version = 'latest', isRb3Board = false }) {
36+
async fetchManifest({ version = 'stable', isRb3Board = false }) {
3737
const type = isRb3Board ? 'rb3g2' : 'tachyon';
3838
const metadataUrl = `${settings.tachyonMeta}/${type}-${encodeURIComponent(version)}.json`;
3939

0 commit comments

Comments
 (0)