firefly-compiler 0.4.49 → 0.4.50
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/bin/Release.ff +5 -4
- package/package.json +1 -1
- package/vscode/package.json +1 -1
package/bin/Release.ff
CHANGED
|
@@ -47,6 +47,8 @@ releaseFireflyPackage(
|
|
|
47
47
|
secretAccessKey: String
|
|
48
48
|
packageName: String
|
|
49
49
|
): Unit {
|
|
50
|
+
system.writeLine("")
|
|
51
|
+
system.writeLine("Will release package: " + packageName)
|
|
50
52
|
let temporary = system.path("../" + packageName + "/.firefly/temporary")
|
|
51
53
|
if(!temporary.exists()) {temporary.createDirectory()}
|
|
52
54
|
let tarGz = temporary.slash("ff_" + packageName + "_0_0_0.tar.gz")
|
|
@@ -95,15 +97,14 @@ requireVsceLoggedIn(system: NodeSystem, workingDirectory: Path) {
|
|
|
95
97
|
run(system: NodeSystem, command: String, arguments: List[String], workingDirectory: Path): ProcessResult {
|
|
96
98
|
system.writeLine("")
|
|
97
99
|
system.writeLine(command + " " + arguments.join(" "))
|
|
98
|
-
|
|
99
|
-
system.writeBuffer(out.standardOut)
|
|
100
|
-
system.writeErrorBuffer(out.standardError)
|
|
101
|
-
out
|
|
100
|
+
system.execute(command, arguments, workingDirectory = Some(workingDirectory))
|
|
102
101
|
}
|
|
103
102
|
|
|
104
103
|
runSuccessful(system: NodeSystem, command: String, arguments: List[String], workingDirectory: Path): Buffer {
|
|
105
104
|
let out = run(system, command, arguments, workingDirectory)
|
|
106
105
|
if(out.exitCode != 0) {
|
|
106
|
+
system.writeBuffer(out.standardOut)
|
|
107
|
+
system.writeErrorBuffer(out.standardError)
|
|
107
108
|
system.writeErrorLine("Exit code: " + out.exitCode)
|
|
108
109
|
system.exit(1)
|
|
109
110
|
}
|
package/package.json
CHANGED