Skip to content

Commit 4a3619d

Browse files
committed
Update BuildConfigTool.astro
1 parent a3f2c88 commit 4a3619d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/src/components/BuildConfigTool.astro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -366,10 +366,7 @@ const configOptions: ConfigOption[] = [
366366
description: "Select Qt version for the GUI framework",
367367
defaultVal: "6",
368368
options: [
369-
{ value: "5.12", label: "Qt 5.12", description: "Older LTS version" },
370-
{ value: "5.15", label: "Qt 5.15", description: "Current LTS version" },
371-
{ value: "6.3", label: "Qt 6.3", description: "Qt 6 LTS" },
372-
{ value: "6.3.1", label: "Qt 6.3.1", description: "Qt 6 patch version" },
369+
{ value: "5", label: "Qt 5", description: "Current LTS version" },
373370
{
374371
value: "6",
375372
label: "Qt 6",
@@ -2339,7 +2336,10 @@ ${envVarsFormatted}
23392336
});
23402337

23412338
// Set script command based on legacy mode and user
2342-
const scriptPath = dockerUser === "username" ? "/home/username/qbt.bash" : "/root/qbt.bash";
2339+
const scriptPath =
2340+
dockerUser === "username"
2341+
? "/home/username/qbt.bash"
2342+
: "/root/qbt.bash";
23432343
const baseScriptCommand = isLegacyMode
23442344
? `${scriptPath} all`
23452345
: `${scriptPath} bootstrap_deps all`;

0 commit comments

Comments
 (0)