Disable internet requirement check in welcome module

This commit is contained in:
2025-11-26 15:42:33 +08:00
parent c874d25329
commit 0813838ce9
3 changed files with 8 additions and 4 deletions

1
.gitignore vendored
View File

@@ -2,3 +2,4 @@
/*.zip
/pkg/
/src/
IFLOW.md

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"idf.pythonInstallPath": "/opt/homebrew/bin/python3"
}

View File

@@ -124,10 +124,10 @@ GeneralRequirements::checkRequirements()
hasPower = checkHasPower();
}
if ( m_entriesToCheck.contains( "internet" ) )
{
hasInternet = checkHasInternet();
}
// if ( m_entriesToCheck.contains( "internet" ) )
// {
// hasInternet = checkHasInternet();
// }
if ( m_entriesToCheck.contains( "root" ) )
{