aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorVladimir Serov <[email protected]>2020-05-21 16:45:37 +0100
committerVladimir Serov <[email protected]>2020-05-21 16:45:37 +0100
commit125e4197d8af1eca498e0088aa37cf48e0b3827e (patch)
tree53aeddd81c49bea6e26fbd6ce622bc2e70a401bc /editors
parent3a9aa80502e9be1bc9341393cb53804843f8e834 (diff)
editors/vscode: removing original file after patching
Diffstat (limited to 'editors')
-rw-r--r--editors/code/src/main.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index 0a234cb84..0a2c30594 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -224,7 +224,7 @@ async function patchelf(dest: PathLike): Promise<void> {
224 } 224 }
225 }) 225 })
226 }) 226 })
227 // await fs.unlink(orig_file) 227 await fs.unlink(orig_file)
228 } 228 }
229 ) 229 )
230} 230}