Skip to content

Commit

Permalink
コメントの調整
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Nov 10, 2024
1 parent 0498e3b commit ce1f213
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/backend/electron/manager/engineInfoManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class EngineInfoManager {
this.vvppEngineDir = payload.vvppEngineDir;
}

/** エンジンディレクトリからエンジン情報を読み込む */
/** エンジンディレクトリのエンジンマニフェストからエンジンの情報を読み込む */
private loadEngineInfo(
engineDir: string,
type: "vvpp" | "path",
Expand All @@ -54,7 +54,7 @@ export class EngineInfoManager {

const [command, ...args] = shlex.split(manifest.command);

const engineInfo = {
return success({
uuid: manifest.uuid,
protocol: "http:",
hostname: "127.0.0.1",
Expand All @@ -67,13 +67,11 @@ export class EngineInfoManager {
executionArgs: args,
type,
isDefault: false,
} satisfies EngineInfo;
return success(engineInfo);
} satisfies EngineInfo);
}

/**
* .envにあるエンジンの情報を取得する。
* ダウンロードが必要なものは除外されている。
*/
private fetchEnvEngineInfos(): EngineInfo[] {
// TODO: envから直接ではなく、envに書いたengine_manifest.jsonから情報を得るようにする
Expand Down

0 comments on commit ce1f213

Please sign in to comment.