Skip to content

Commit

Permalink
fix SIGINT not defined warning when PCNTL extension not enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
dantleech committed Feb 16, 2019
1 parent 7bceb01 commit e5dbfd3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.4.1]

- SIGINT not defined

## [0.4.0] - 2019-02-16

- Do not include parent document query in child links #32
Expand Down
2 changes: 1 addition & 1 deletion lib/Console/Command/CrawlCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

class CrawlCommand extends Command
{
public const EXIT_STATUS_SIGINT = 128 + SIGINT;
public const EXIT_STATUS_SIGINT = 130; // 128 + SIGINT
public const EXIT_STATUS_FAILURE = 4;
public const EXIT_STATUS_SUCCESS = 0;

Expand Down

0 comments on commit e5dbfd3

Please sign in to comment.