Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wirednkod committed Nov 17, 2023
1 parent 06e5386 commit 2c441c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions javascript/packages/orchestrator/src/configGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -549,8 +549,8 @@ async function getCollatorNodeFromConfig(
collatorConfig.validator !== undefined
? collatorConfig.validator
: cumulusBased
? true
: false;
? true
: false;

if (collatorConfig.args)
args = args.concat(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ export class NativeClient extends Client {
result.stdout !== ""
? result.stdout
: result.stderr !== ""
? result.stderr
: "";
? result.stderr
: "";

return {
exitCode: result.exitCode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ export class PodmanClient extends Client {
result.stdout !== ""
? result.stdout
: result.stderr !== ""
? result.stderr
: "";
? result.stderr
: "";

return {
exitCode: result.exitCode,
Expand Down

0 comments on commit 2c441c2

Please sign in to comment.