Skip to content

Commit

Permalink
Fix cli-util usage
Browse files Browse the repository at this point in the history
  • Loading branch information
eablack committed May 7, 2024
1 parent 56ebf74 commit b0db4f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/exec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const cli = require('heroku-cli-util')
const cli = require('@heroku/heroku-cli-util');
const path = require('path');
const child = require('child_process');
const url = require('url');
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

const child = require('child_process');
const cli = require('heroku-cli-util');
const cli = require('@heroku/heroku-cli-util');
const Client = require('ssh2').Client;
const crypto = require('crypto');
const tty = require('tty')
Expand Down

0 comments on commit b0db4f1

Please sign in to comment.