Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
fix homebrew script file, add v6.0.8 release notes 📜
Browse files Browse the repository at this point in the history
  • Loading branch information
abdfnx committed Dec 14, 2021
1 parent 153e73e commit 02ce1cc
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@
---

## [[v6.0.8] 2021-12-14](#v608-2021-12-14)

### Added

- configure `.devcontainer` for secman

### Changed

nothing

### Fixed

- fix config files warning messages ([#120](https://github.com/scmn-dev/secman/issues/120))
- fix Homedir bug in windows ([#121](https://github.com/scmn-dev/secman/issues/121))

## [[v6.0.71] 2021-11-14](#v6071-2021-11-14)

### Added
Expand Down
2 changes: 1 addition & 1 deletion scripts/brew/homebrew.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async function getText(url) {
async function getDownloadInfoForNodeVersion(version) {
// https://nodejs.org/download/release/v16.13.0/SHASUMS256.txt
const url = `${NODE_JS_BASE}/v${version}/SHASUMS256.txt`;
const shasums: any = await getText(url);
const shasums = await getText(url);
const shasumLine = shasums.split("\n").find((line) => {
return line.includes(`node-v${version}-darwin-x64.tar.gz`);
});
Expand Down

0 comments on commit 02ce1cc

Please sign in to comment.