Skip to content

Commit

Permalink
fix: remote-ssh remove config code (labring#5255)
Browse files Browse the repository at this point in the history
* fix: remote-ssh bug

* fix: remove config remote-ssh code
  • Loading branch information
mlhiter authored Dec 3, 2024
1 parent 05a737a commit 06a3bfa
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 49 deletions.
2 changes: 1 addition & 1 deletion extensions/ide/vscode/devbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "devbox-aio",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.2.2024112203",
"version": "1.2.2024120201",
"keywords": [
"devbox",
"remote development",
Expand Down
3 changes: 0 additions & 3 deletions extensions/ide/vscode/devbox/src/commands/remoteConnector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {
} from '../constant/file'
import { Logger } from '../common/logger'
import { Disposable } from '../common/dispose'
import { modifiedRemoteSSHConfig } from '../utils/remoteSSHConfig'
import { convertSSHConfigToVersion2 } from '../utils/sshConfig'
import { GlobalStateManager } from '../utils/globalStateManager'
import { ensureFileAccessPermission, ensureFileExists } from '../utils/file'
Expand Down Expand Up @@ -131,8 +130,6 @@ export class RemoteSSHConnector extends Disposable {
const { sshDomain, sshPort, base64PrivateKey, sshHostLabel, workingDir } =
args

modifiedRemoteSSHConfig(sshHostLabel)

const sshUser = sshDomain.split('@')[0]
const sshHost = sshDomain.split('@')[1]

Expand Down
45 changes: 0 additions & 45 deletions extensions/ide/vscode/devbox/src/utils/remoteSSHConfig.ts

This file was deleted.

0 comments on commit 06a3bfa

Please sign in to comment.