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 a80ba8d commit 6bc0694
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/bootloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,17 @@ window.console.group = (...args: any) => {
try {
const args = new URLSearchParams(window.location.search)
const kernel = new Kernel()
await kernel.boot(boot, progress, args)
writeln('---------------------------------------------')
writeln('FlowOS is now discontinued. Starting in 5s...')
writeln('FlowOS is now discontinued. Starting in 5s...')
writeln('FlowOS is now discontinued. Starting in 5s...')
writeln('FlowOS is now discontinued. Starting in 5s...')
writeln('FlowOS is now discontinued. Starting in 5s...')
writeln('FlowOS is now discontinued. Starting in 5s...')
writeln('---------------------------------------------')
setTimeout(() => {
await kernel.boot(boot, progress, args)
}, 5000)
} catch (e) {
writeln()
writeln('An error occured while booting FlowOS.')
Expand Down

0 comments on commit 6bc0694

Please sign in to comment.