Skip to content

Commit

Permalink
Lintfix
Browse files Browse the repository at this point in the history
  • Loading branch information
arboleya committed Jan 19, 2024
1 parent d1e8ce2 commit 295d8a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/forc/lib/install.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env node

import { execSync } from 'child_process';
import { error } from 'console';
import { existsSync, rmSync, writeFileSync } from 'fs';
import fetch from 'node-fetch';
import { join } from 'path';
Expand Down Expand Up @@ -57,4 +58,4 @@ import {
// Cleanup
rmSync(pkgPath);
}
})().catch((e) => console.error(e));
})().catch((e) => error(e));
3 changes: 2 additions & 1 deletion packages/fuel-core/lib/install.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env node

import { execSync } from 'child_process';
import { error } from 'console';
import { existsSync, rmSync, writeFileSync, mkdirSync, renameSync } from 'fs';
import fetch from 'node-fetch';
import { join } from 'path';
Expand Down Expand Up @@ -78,4 +79,4 @@ import {
});
rmSync(pkgPath);
}
})().catch((e) => console.error(e));
})().catch((e) => error(e));

0 comments on commit 295d8a2

Please sign in to comment.