Skip to content

Commit

Permalink
名称のミスを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
TakuyaIsaki committed Sep 20, 2023
1 parent 8403de7 commit 1a64790
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions build-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ npm run build-js
# バイナリ実行可能な形式に変換
mkdir -p bin
node --experimental-sea-config sea-config.json
cp $(command -v node) ./bin/jobcan
codesign --remove-signature ./bin/jobcan
cp $(command -v node) ./bin/jobcan-manipulator
codesign --remove-signature ./bin/jobcan-manipulator

npx postject bin/jobcan NODE_SEA_BLOB jobcan.blob \
npx postject bin/jobcan-manipulator NODE_SEA_BLOB jobcan-manipulator.blob \
--sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2 \
--macho-segment-name NODE_SEA
codesign --sign - bin/jobcan
codesign --sign - bin/jobcan-manipulator

# 不要なファイルの削除
rm -r dist
rm jobcan.blob
rm jobcan-manipulator.blob
2 changes: 1 addition & 1 deletion sea-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"main": "dist/out.js",
"output": "jobcan.blob",
"output": "jobcan-manipulator.blob",
"disableExperimentalSEAWarning": true
}

0 comments on commit 1a64790

Please sign in to comment.