firefly-compiler 0.4.50 → 0.4.51

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
@@ -54,10 +54,8 @@ releaseFireflyPackage(
54
54
  let tarGz = temporary.slash("ff_" + packageName + "_0_0_0.tar.gz")
55
55
  if(tarGz.exists()) {
56
56
  tarGz.delete()
57
- system.writeLine("Deleted " + tarGz.absolute())
58
57
  }
59
58
  internalMakeTarGz(tarGz, system.path("../" + packageName))
60
- system.writeLine("Created " + tarGz.absolute())
61
59
  S3.put(
62
60
  system
63
61
  accessKeyId
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.50",
7
+ "version": "0.4.51",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Ahnfelt/firefly-boot"
package/s3/S3.ff CHANGED
@@ -23,10 +23,7 @@ put(
23
23
  let allHeaders = [...canonicalHeaders, Pair("Authorization", authenticationHeader)]
24
24
 
25
25
  let url = "https://" + host + "/" + encodedKey
26
- let response = system.httpClient().fetch(url, method = "PUT", headers = allHeaders, body = Some(HttpClient.bodyBuffer(body)), throw = False)
27
- system.writeLine("" + response.status())
28
- system.writeLine(response.statusText())
29
- //system.writeLine(response.readText())
26
+ system.httpClient().fetch(url, method = "PUT", headers = allHeaders, body = Some(HttpClient.bodyBuffer(body)), throw = True)
30
27
  }
31
28
 
32
29
  makeS3AuthorizationHeader(
@@ -4,7 +4,7 @@
4
4
  "description": "Firefly language support",
5
5
  "author": "Firefly team",
6
6
  "license": "MIT",
7
- "version": "0.4.50",
7
+ "version": "0.4.51",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Ahnfelt/firefly-boot"