Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0x2b3bfa0 authored May 10, 2024
1 parent cdb3c48 commit 47fb01d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/analytics.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const path = require('path');
const fs = require('fs').promises;

const fetch = require('node-fetch');
const ProxyAgent = require('proxy-agent');
const { ProxyAgent } = require('proxy-agent');
const { promisify } = require('util');
const { scrypt } = require('crypto');
const { v4: uuidv4, v5: uuidv5, parse } = require('uuid');
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/bitbucket_cloud.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const fetch = require('node-fetch');
const { URL } = require('url');
const { spawn } = require('child_process');
const FormData = require('form-data');
const ProxyAgent = require('proxy-agent');
const { ProxyAgent } = require('proxy-agent');
const { logger } = require('../logger');

const { fetchUploadData, exec, gpuPresent, sleep } = require('../utils');
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const { Octokit } = require('@octokit/rest');
const { withCustomRequest } = require('@octokit/graphql');
const { throttling } = require('@octokit/plugin-throttling');
const tar = require('tar');
const ProxyAgent = require('proxy-agent');
const { ProxyAgent } = require('proxy-agent');

const { download, exec, sleep } = require('../utils');
const { logger } = require('../logger');
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/gitlab.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const { spawn } = require('child_process');
const fs = require('fs').promises;
const fse = require('fs-extra');
const { resolve } = require('path');
const ProxyAgent = require('proxy-agent');
const { ProxyAgent } = require('proxy-agent');
const { backOff } = require('exponential-backoff');
const { logger } = require('../logger');

Expand Down
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const fs = require('fs');
const PATH = require('path');
const { Buffer } = require('buffer');
const fetch = require('node-fetch');
const ProxyAgent = require('proxy-agent');
const { ProxyAgent } = require('proxy-agent');
const NodeSSH = require('node-ssh').NodeSSH;
const stripAnsi = require('strip-ansi');
const { logger } = require('./logger');
Expand Down

0 comments on commit 47fb01d

Please sign in to comment.