refactor!: port env (#9559)

refactor: port env
This commit is contained in:
Jason Rasmussen
2024-05-17 12:59:05 -04:00
committed by GitHub
parent c03981ac1d
commit d61418886f
6 changed files with 13 additions and 20 deletions

View File

@@ -17,7 +17,7 @@ const setup = async () => {
child.stdout.on('data', (data) => {
const input = data.toString();
console.log(input);
if (input.includes('Immich Microservices is listening')) {
if (input.includes('Immich Microservices is running')) {
_resolve();
}
});