diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cloudify.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/cloudify.js b/lib/cloudify.js index 138b986..1cd5489 100644 --- a/lib/cloudify.js +++ b/lib/cloudify.js @@ -1,5 +1,5 @@ /* -Copyright(c) 2017-2018 AT&T Intellectual Property. All rights reserved. +Copyright(c) 2017-2019 AT&T Intellectual Property. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -231,8 +231,7 @@ exports.uploadBlueprint = function(req, bpid, blueprint) { // Cloudify API wants a gzipped tar of a directory, not the blueprint text const zip = new admzip(); - zip.addFile('work/', new Buffer(0)); - zip.addFile('work/blueprint.yaml', new Buffer(blueprint, 'utf8')); + zip.addFile('work/blueprint.yaml', Buffer.from(blueprint, 'utf8')); const zip_buffer = zip.toBuffer(); // Set up the HTTP PUT request |