File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ concurrency:
99
1010jobs :
1111 test-desktop-mac :
12- runs-on : macos-latest
12+ runs-on : macos-12
1313 timeout-minutes : 90
1414 steps :
1515 - uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -276,7 +276,10 @@ const _createAppDirs = async function () {
276276
277277
278278const CORE_LIB_GUARD_INTERVAL = 5000 ;
279- const _FS_ERROR_MESSAGE = 'Oops. Phoenix could not be started due to missing file system library.' ;
279+ const _FS_ERROR_MESSAGE = ( Phoenix . isNativeApp && Phoenix . platform === "mac" ) ?
280+ 'Oops. Could not start due to missing file system library.\n\nPhoenix Code requires `macOS 12 Monterey` or higher' :
281+ 'Oops. Could not start due to missing file system library.' +
282+ '\n\nPlease use a modern browser (released within the last 4 years).' ;
280283export default function initVFS ( ) {
281284 if ( ! window . fs || ! window . path || ! window . Phoenix ) {
282285 window . alert ( _FS_ERROR_MESSAGE ) ;
You can’t perform that action at this time.
0 commit comments