Skip to content

Commit

Permalink
🐛 Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cookiengineer committed Sep 29, 2021
1 parent 0aba58e commit 7a7623c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pacman-backup.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ const USER = process.env.SUDO_USER || process.env.USER || process.env.USERNAME
if (ACTION !== null) {

console.log(':: pacman-backup ' + ACTION);
console.log(' -> FOLDER: ' + FOLDER !== null ? ('"' + FOLDER + '"') : '(none)');
console.log(' -> MIRROR: ' + MIRROR !== null ? ('"' + MIRROR + '"') : '(none)');
console.log(' -> SERVER: ' + SERVER !== null ? ('"' + SERVER + '"') : '(none)');
console.log(' -> USER: ' + USER !== null ? ('"' + USER + '"') : '(none)');
console.log(' -> FOLDER: ' + (FOLDER !== null ? ('"' + FOLDER + '"') : '(none)'));
console.log(' -> MIRROR: ' + (MIRROR !== null ? ('"' + MIRROR + '"') : '(none)'));
console.log(' -> SERVER: ' + (SERVER !== null ? ('"' + SERVER + '"') : '(none)'));
console.log(' -> USER: ' + (USER !== null ? ('"' + USER + '"') : '(none)'));
console.log('');

}
Expand Down

0 comments on commit 7a7623c

Please sign in to comment.