Skip to content

Commit

Permalink
Fix double negative
Browse files Browse the repository at this point in the history
due to ~~not~~ this run not executing
  • Loading branch information
Dennis Falling committed Dec 4, 2017
1 parent 9be3848 commit bc14a3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/commands/danger-process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if (process.env["DANGER_VERBOSE"] || app.verbose) {
getRuntimeCISource(app).then(source => {
// This does not set a failing exit code
if (source && !source.isPR) {
console.log("Skipping Danger due to not this run not executing on a PR.")
console.log("Skipping Danger due to this run not executing on a PR.")
}

// The optimal path
Expand Down
2 changes: 1 addition & 1 deletion source/commands/danger-run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const app = (program as any) as SharedCLI
getRuntimeCISource(app).then(source => {
// This does not set a failing exit code
if (source && !source.isPR) {
console.log("Skipping Danger due to not this run not executing on a PR.")
console.log("Skipping Danger due to this run not executing on a PR.")
}

// The optimal path
Expand Down

0 comments on commit bc14a3c

Please sign in to comment.