We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93933e7 commit add4026Copy full SHA for add4026
lib/logic/api/cluster.js
@@ -89,13 +89,11 @@ const createCluster = async (info) => {
89
const req = request(assetUrl);
90
req.pipe(fs.createWriteStream(zipPath));
91
req.on('end', () => {
92
- console.log('File written!');
93
decompress(zipPath, `${homedir()}/.Codefresh/cluster`, {
94
plugins: [
95
decompressTargz(),
96
],
97
}).then(() => {
98
- console.log('Files decompressed');
99
fs.writeFile(versionPath, version, (err) => {
100
if (err) {
101
throw err;
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "codefresh",
3
- "version": "0.8.92",
+ "version": "0.8.93",
4
"description": "Codefresh command line utility",
5
"main": "index.js",
6
"preferGlobal": true,
0 commit comments