Skip to content

Commit e14b9eb

Browse files
Fix comment
1 parent e285ad7 commit e14b9eb

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/cloud/commands/deploy.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ export async function deploy(context: DeployContext): Promise<boolean> {
125125
await configService.writeConfig(workspaceRoot, config)
126126
}
127127

128-
// Start deployment process
129128
try {
130129
updateStatus("Creating deployment...")
131130
const deployment = await apiService.createDeployment(config.app_id)
@@ -187,7 +186,6 @@ export async function deploy(context: DeployContext): Promise<boolean> {
187186
}
188187

189188
async function createArchive(workspaceRoot: vscode.Uri): Promise<Uint8Array> {
190-
// Find all files, excluding common patterns via glob
191189
const files = await vscode.workspace.findFiles(
192190
new vscode.RelativePattern(workspaceRoot, "**/*"),
193191
"{**/.venv/**,**/__pycache__/**,**/.git/**}",
@@ -225,7 +223,6 @@ async function uploadToS3(
225223
formData.append(key, value)
226224
}
227225

228-
// Add the file
229226
formData.append("file", new Blob([archive]))
230227

231228
const response = await fetch(url, {

0 commit comments

Comments
 (0)