Skip to content

Commit

Permalink
Build name
Browse files Browse the repository at this point in the history
  • Loading branch information
sirWill committed May 24, 2022
1 parent 06f471c commit 3a9583f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions development/build/etc.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ function createZipTask(platform, buildType) {
return async () => {
const path =
buildType === BuildType.main
? `metamask-${platform}-${version}`
: `metamask-${buildType}-${platform}-${version}`;
? `aptosmask-${platform}-${version}`
: `aptosmask-${buildType}-${platform}-${version}`;
await pump(
gulp.src(`dist/${platform}/**`),
gulpZip(`${path}.zip`),
Expand Down
6 changes: 3 additions & 3 deletions development/metamaskbot-build-announce.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,19 @@ async function start() {
const platforms = ['chrome', 'firefox', 'opera'];
const buildLinks = platforms
.map((platform) => {
const url = `${BUILD_LINK_BASE}/builds/metamask-${platform}-${VERSION}.zip`;
const url = `${BUILD_LINK_BASE}/builds/aptosmask-${platform}-${VERSION}.zip`;
return `<a href="${url}">${platform}</a>`;
})
.join(', ');
const betaBuildLinks = platforms
.map((platform) => {
const url = `${BUILD_LINK_BASE}/builds-beta/metamask-beta-${platform}-${VERSION}.zip`;
const url = `${BUILD_LINK_BASE}/builds-beta/aptosmask-beta-${platform}-${VERSION}.zip`;
return `<a href="${url}">${platform}</a>`;
})
.join(', ');
const flaskBuildLinks = platforms
.map((platform) => {
const url = `${BUILD_LINK_BASE}/builds-flask/metamask-flask-${platform}-${VERSION}.zip`;
const url = `${BUILD_LINK_BASE}/builds-flask/aptosmask-flask-${platform}-${VERSION}.zip`;
return `<a href="${url}">${platform}</a>`;
})
.join(', ');
Expand Down

0 comments on commit 3a9583f

Please sign in to comment.