File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
189188async 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 , {
You can’t perform that action at this time.
0 commit comments