Regenerated
This commit is contained in:
+396
-397
File diff suppressed because it is too large
Load Diff
+8
-9
@@ -3721,22 +3721,21 @@ ShellRoot {
|
|||||||
Process {
|
Process {
|
||||||
id: stepProc
|
id: stepProc
|
||||||
|
|
||||||
stdout: StdioCollector {
|
stdout: SplitParser {
|
||||||
onStreamFinished: {
|
onRead: (line) => {
|
||||||
state.log = text.split("\n").slice(-6).join("\n")
|
state.log = (state.log + "\n" + line).split("\n").slice(-8).join("\n")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stderr: StdioCollector {
|
stderr: SplitParser {
|
||||||
onStreamFinished: {
|
onRead: (line) => {
|
||||||
if (text.trim() !== "")
|
if (line.trim() !== "")
|
||||||
state.log = text.split("\n").slice(-6).join("\n")
|
state.log = (state.log + "\n" + line).split("\n").slice(-8).join("\n")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onExited: (code) => {
|
onExited: (code) => {
|
||||||
if (code !== 0 && state.step !== 3) {
|
if (code !== 0 && state.step !== 3) {
|
||||||
// step 3 is git commit — may exit 1 if nothing to commit, that's fine
|
|
||||||
state.failed = true
|
state.failed = true
|
||||||
state.running = false
|
state.running = false
|
||||||
} else {
|
} else {
|
||||||
@@ -3851,7 +3850,7 @@ ShellRoot {
|
|||||||
// Log output
|
// Log output
|
||||||
Rectangle {
|
Rectangle {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
height: 80
|
height: 160
|
||||||
radius: 8
|
radius: 8
|
||||||
color: colors.surface0
|
color: colors.surface0
|
||||||
visible: state.log !== ""
|
visible: state.log !== ""
|
||||||
|
|||||||
@@ -54,22 +54,21 @@ ShellRoot {
|
|||||||
Process {
|
Process {
|
||||||
id: stepProc
|
id: stepProc
|
||||||
|
|
||||||
stdout: StdioCollector {
|
stdout: SplitParser {
|
||||||
onStreamFinished: {
|
onRead: (line) => {
|
||||||
state.log = text.split("\n").slice(-6).join("\n")
|
state.log = (state.log + "\n" + line).split("\n").slice(-8).join("\n")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stderr: StdioCollector {
|
stderr: SplitParser {
|
||||||
onStreamFinished: {
|
onRead: (line) => {
|
||||||
if (text.trim() !== "")
|
if (line.trim() !== "")
|
||||||
state.log = text.split("\n").slice(-6).join("\n")
|
state.log = (state.log + "\n" + line).split("\n").slice(-8).join("\n")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onExited: (code) => {
|
onExited: (code) => {
|
||||||
if (code !== 0 && state.step !== 3) {
|
if (code !== 0 && state.step !== 3) {
|
||||||
// step 3 is git commit — may exit 1 if nothing to commit, that's fine
|
|
||||||
state.failed = true
|
state.failed = true
|
||||||
state.running = false
|
state.running = false
|
||||||
} else {
|
} else {
|
||||||
@@ -184,7 +183,7 @@ ShellRoot {
|
|||||||
// Log output
|
// Log output
|
||||||
Rectangle {
|
Rectangle {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
height: 80
|
height: 160
|
||||||
radius: 8
|
radius: 8
|
||||||
color: colors.surface0
|
color: colors.surface0
|
||||||
visible: state.log !== ""
|
visible: state.log !== ""
|
||||||
|
|||||||
Reference in New Issue
Block a user