Browse Source

whitespace nit

tags/2.0.1
Jonathan Cobb 4 years ago
parent
commit
f085bd2554
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      wizard-server/src/main/java/org/cobbzilla/wizard/server/config/PgRestServerConfiguration.java

+ 1
- 1
wizard-server/src/main/java/org/cobbzilla/wizard/server/config/PgRestServerConfiguration.java View File

@@ -184,7 +184,7 @@ public class PgRestServerConfiguration extends RestServerConfiguration implement
command = ArrayUtil.arrayToString(pgCommand(command, db, user), " ", "", false);
final File pgPassFile = getPgPassFile();
return pgPassFile != null && pgPassFile.exists()
? ENV_PGPASSWORD+"=\"$(cat " + abs(pgPassFile) + ")\" " + command
? ENV_PGPASSWORD + "=\"$(cat " + abs(pgPassFile) + ")\" " + command
: command;
}



Loading…
Cancel
Save