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 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
- let out = system.execute(command, arguments, workingDirectory = Some(workingDirectory))
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
@@ -4,7 +4,7 @@
4
4
  "description": "Firefly compiler",
5
5
  "author": "Firefly team",
6
6
  "license": "MIT",
7
- "version": "0.4.49",
7
+ "version": "0.4.50",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Ahnfelt/firefly-boot"
@@ -4,7 +4,7 @@
4
4
  "description": "Firefly language support",
5
5
  "author": "Firefly team",
6
6
  "license": "MIT",
7
- "version": "0.4.49",
7
+ "version": "0.4.50",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Ahnfelt/firefly-boot"