Skip to content

Commit

Permalink
🚀⚙️ Hello world from Core
Browse files Browse the repository at this point in the history
  • Loading branch information
MulverineX committed Aug 31, 2023
1 parent 6617713 commit 4910b02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ export class MusicCore {

export const Music = new MusicCore();

console.log('[Music Core] Hello world!!!!!!!')
console.log('[Music Core] Hello world!!!!!!!!')

export default Music;
2 changes: 1 addition & 1 deletion scripts/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const release = process.env.COMMIT_MESSAGE.startsWith('🚀');

for await (const [ name, asset ] of Object.entries(assets)) {
resolvedAssets[name] = {
src: `https://github.com/${process.env.REPOSITORY}/releases/latest/download/${asset}`,
src: `https://github.com/${process.env.REPOSITORY}/releases/latest/download/${asset.split('dist/')[1]}`,
hash: crypto.createHash('sha512').update(await fs.readFile(asset)).digest('base64')
}
}
Expand Down

0 comments on commit 4910b02

Please sign in to comment.