Skip to content
This repository has been archived by the owner on Mar 23, 2021. It is now read-only.

Commit

Permalink
Merge #351
Browse files Browse the repository at this point in the history
351: Fix 404 error r=D4nte a=D4nte

Fix 404 error when doing `yarn create comit-app`

Co-authored-by: Franck Royer <[email protected]>
  • Loading branch information
bors[bot] and Franck Royer authored Jan 15, 2020
2 parents cdf595f + cdd4033 commit 8d7c99a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions create/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Fixed
- Fix 404 error during first `yarn create comit-app`.

## [0.8.0] - 2020-01-15

### Changed
Expand Down
2 changes: 1 addition & 1 deletion create/npm/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = async function download(version, binTarget) {
fs.unlinkSync(archivePath);
}

const url = `https://github.com/comit-network/create-comit-app/releases/download/${version}/${archiveName}`;
const url = `https://github.com/comit-network/create-comit-app/releases/download/create-comit-app-${version}/${archiveName}`;

let response = await axios({
url,
Expand Down

0 comments on commit 8d7c99a

Please sign in to comment.