Skip to content

Commit

Permalink
Update bootloader.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ThinLiquid authored Mar 30, 2024
1 parent 76d6033 commit fa9876c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bootloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ try {
writeln('/-----------------------------------------------\\')
writeln('| FlowOS is now discontinued. Starting in 10s...|')
writeln('\\-----------------------------------------------/')
setTimeout(async () => {
await kernel.boot(boot, progress, args)
setTimeout(() => {
kernel.boot(boot, progress, args).catch(e => console.error(e))
}, 10000)
} catch (e) {
writeln()
Expand Down

0 comments on commit fa9876c

Please sign in to comment.