Skip to content

Commit 0ef9ca2

Browse files
committed
Missing semicolon.
1 parent fc7225d commit 0ef9ca2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fileSync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export class FileSync {
106106
//Determine Destination
107107
if(typeof map.destination === "string"){
108108
//Single Destination
109-
this.syncFile(file, vscode.Uri.file(map.destination + filePath))
109+
this.syncFile(file, vscode.Uri.file(map.destination + filePath));
110110

111111
} else if(Array.isArray(map.destination)){
112112
//Multi Destination

0 commit comments

Comments
 (0)