Skip to content

Commit e96d84c

Browse files
committed
add .vscode directory to .gitignore
1 parent 585f1ab commit e96d84c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,4 @@
5656

5757
# Misc
5858
.python-version
59+
.vscode

src/validate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ pgBackupValidate(pgBackup *backup, pgRestoreParams *params)
190190
/* Update backup status */
191191
if (corrupted)
192192
backup->status = BACKUP_STATUS_CORRUPT;
193+
193194
write_backup_status(backup, corrupted ? BACKUP_STATUS_CORRUPT :
194195
BACKUP_STATUS_OK, instance_name, true);
195196

@@ -218,7 +219,6 @@ pgBackupValidate(pgBackup *backup, pgRestoreParams *params)
218219
backup->status = BACKUP_STATUS_CORRUPT;
219220
write_backup_status(backup, BACKUP_STATUS_CORRUPT, instance_name, true);
220221
}
221-
222222
}
223223
}
224224

0 commit comments

Comments
 (0)