Skip to content

Commit 7a7623c

Browse files
committed
🐛 Fix
1 parent 0aba58e commit 7a7623c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pacman-backup.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ const USER = process.env.SUDO_USER || process.env.USER || process.env.USERNAME
2626
if (ACTION !== null) {
2727

2828
console.log(':: pacman-backup ' + ACTION);
29-
console.log(' -> FOLDER: ' + FOLDER !== null ? ('"' + FOLDER + '"') : '(none)');
30-
console.log(' -> MIRROR: ' + MIRROR !== null ? ('"' + MIRROR + '"') : '(none)');
31-
console.log(' -> SERVER: ' + SERVER !== null ? ('"' + SERVER + '"') : '(none)');
32-
console.log(' -> USER: ' + USER !== null ? ('"' + USER + '"') : '(none)');
29+
console.log(' -> FOLDER: ' + (FOLDER !== null ? ('"' + FOLDER + '"') : '(none)'));
30+
console.log(' -> MIRROR: ' + (MIRROR !== null ? ('"' + MIRROR + '"') : '(none)'));
31+
console.log(' -> SERVER: ' + (SERVER !== null ? ('"' + SERVER + '"') : '(none)'));
32+
console.log(' -> USER: ' + (USER !== null ? ('"' + USER + '"') : '(none)'));
3333
console.log('');
3434

3535
}

0 commit comments

Comments
 (0)