From b12885aa6e2c4380778eeddcd512d35cd1de7056 Mon Sep 17 00:00:00 2001 From: Andre Riesco Date: Mon, 25 Mar 2024 08:04:54 -0300 Subject: [PATCH 1/2] deps: Print success msg for packages and scripts installed successfully Signed-off-by: Andre Riesco --- scripts/checkDeps.ps1 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/scripts/checkDeps.ps1 b/scripts/checkDeps.ps1 index af301faaa..2bdd9c0d6 100644 --- a/scripts/checkDeps.ps1 +++ b/scripts/checkDeps.ps1 @@ -127,8 +127,6 @@ if ( } } - Write-Host -ForegroundColor DarkGreen "✅ All packages installed successfully" - $_packagesInstalledOk = $true } @@ -152,14 +150,14 @@ if ( } } - Write-Host -ForegroundColor DarkGreen "✅ All dependency installation scripts executed successfully" - $_scriptsInstalledOk = $true } } if ($_packagesInstalledOk -eq $true -and $_scriptsInstalledOk -eq $true) { + Write-Host -ForegroundColor DarkGreen "✅ All packages installed and installation scripts executed successfully" + # all packages installed and installation scripts executed before create dep ok if it doesn't already exist if ( -not (Test-Path ./.conf/.depok)){ New-Item -Path .conf/ -Name .depok -ItemType File 2>&1 | out-null From a97136b73f1599f9dca5e1855b433a55f5e6351f Mon Sep 17 00:00:00 2001 From: Andre Riesco Date: Mon, 25 Mar 2024 11:08:21 -0300 Subject: [PATCH 2/2] cpp: Fix cpp not focusing on Debug Console, in remote debugging Signed-off-by: Andre Riesco --- cConsole/.vscode/launch.json | 4 ++++ cmakeConsole/.vscode/launch.json | 2 ++ cppConsole/.vscode/launch.json | 4 ++++ cppQML/.vscode/launch.json | 3 +++ cppSlint/.vscode/launch.json | 3 +++ rustConsole/.vscode/launch.json | 2 ++ rustSlint/.vscode/launch.json | 2 ++ zigConsole/.vscode/launch.json | 2 ++ 8 files changed, 22 insertions(+) diff --git a/cConsole/.vscode/launch.json b/cConsole/.vscode/launch.json index c570a8bb3..f8dcc788e 100644 --- a/cConsole/.vscode/launch.json +++ b/cConsole/.vscode/launch.json @@ -37,6 +37,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -82,6 +83,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -127,6 +129,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -172,6 +175,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, diff --git a/cmakeConsole/.vscode/launch.json b/cmakeConsole/.vscode/launch.json index 222f37007..6bd9dc246 100644 --- a/cmakeConsole/.vscode/launch.json +++ b/cmakeConsole/.vscode/launch.json @@ -36,6 +36,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -81,6 +82,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, diff --git a/cppConsole/.vscode/launch.json b/cppConsole/.vscode/launch.json index 107433dc8..cd3d519d5 100644 --- a/cppConsole/.vscode/launch.json +++ b/cppConsole/.vscode/launch.json @@ -36,6 +36,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -81,6 +82,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -126,6 +128,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -171,6 +174,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, diff --git a/cppQML/.vscode/launch.json b/cppQML/.vscode/launch.json index f0fbb1bc3..693f31b75 100644 --- a/cppQML/.vscode/launch.json +++ b/cppQML/.vscode/launch.json @@ -46,6 +46,7 @@ } ], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -100,6 +101,7 @@ } ], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -154,6 +156,7 @@ } ], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, diff --git a/cppSlint/.vscode/launch.json b/cppSlint/.vscode/launch.json index 890c3d0a4..7acea644d 100644 --- a/cppSlint/.vscode/launch.json +++ b/cppSlint/.vscode/launch.json @@ -36,6 +36,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -83,6 +84,7 @@ "environment": [ ], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -128,6 +130,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, diff --git a/rustConsole/.vscode/launch.json b/rustConsole/.vscode/launch.json index e376ccb4d..dfe33d7d2 100644 --- a/rustConsole/.vscode/launch.json +++ b/rustConsole/.vscode/launch.json @@ -37,6 +37,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -82,6 +83,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, diff --git a/rustSlint/.vscode/launch.json b/rustSlint/.vscode/launch.json index e960e0f2a..067de1d0b 100644 --- a/rustSlint/.vscode/launch.json +++ b/rustSlint/.vscode/launch.json @@ -48,6 +48,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, @@ -93,6 +94,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "sourceFileMap": { "${config:torizon_app_root}": "${workspaceFolder}" }, diff --git a/zigConsole/.vscode/launch.json b/zigConsole/.vscode/launch.json index 9b791045e..63c1c87b2 100644 --- a/zigConsole/.vscode/launch.json +++ b/zigConsole/.vscode/launch.json @@ -37,6 +37,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "logging": { "engineLogging": true, }, @@ -85,6 +86,7 @@ "cwd": "${config:torizon_app_root}", "environment": [], "externalConsole": false, + "internalConsoleOptions": "openOnSessionStart", "logging": { "engineLogging": true, },