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

Commit

Permalink
Merge #363
Browse files Browse the repository at this point in the history
363: Fix name of binary r=D4nte a=D4nte

Old binary name was used making it not possible to install comit-scripts

Co-authored-by: Franck Royer <[email protected]>
  • Loading branch information
bors[bot] and Franck Royer authored Jan 16, 2020
2 parents 3ae5f12 + 592fb70 commit 58e87af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions scripts/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
- `cannot rename` error during start-env has been fixed.

## [0.8.1] - 2020-01-15

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ module.exports = async function download(version, binTarget) {
dest: targetDir
});
fs.unlinkSync(archivePath);
fs.renameSync(targetDir + "/create-comit-app", binTarget);
fs.renameSync(targetDir + "/comit-scripts", binTarget);
fs.chmodSync(binTarget, 755);
};

0 comments on commit 58e87af

Please sign in to comment.