@neriros/ralphy 3.10.19 → 3.10.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/shell/index.js +3 -2
- package/package.json +1 -1
package/dist/shell/index.js
CHANGED
|
@@ -18928,8 +18928,8 @@ import { readFileSync } from "fs";
|
|
|
18928
18928
|
import { resolve } from "path";
|
|
18929
18929
|
function getVersion() {
|
|
18930
18930
|
try {
|
|
18931
|
-
if ("3.10.
|
|
18932
|
-
return "3.10.
|
|
18931
|
+
if ("3.10.20")
|
|
18932
|
+
return "3.10.20";
|
|
18933
18933
|
} catch {}
|
|
18934
18934
|
const dirsToTry = [];
|
|
18935
18935
|
try {
|
|
@@ -105950,6 +105950,7 @@ function pipelineStages(row) {
|
|
|
105950
105950
|
case "awaiting":
|
|
105951
105951
|
return stages("done", "current", "pending", "pending", "pending", "pending");
|
|
105952
105952
|
case "queued":
|
|
105953
|
+
return stages("done", "done", "pending", "pending", "pending", "pending");
|
|
105953
105954
|
case "working":
|
|
105954
105955
|
case "in-progress":
|
|
105955
105956
|
return stages("done", "done", "current", "pending", "pending", "pending");
|
package/package.json
CHANGED