Skip to content

Commit

Permalink
Merge pull request #73 from demisto/sdk_build-fix
Browse files Browse the repository at this point in the history
sys.exit() fix
  • Loading branch information
yaakovi authored Dec 22, 2019
2 parents 62885b3 + 87f30e0 commit 8ea4d49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### 0.2.1

* **Validate** now checks that the id and name fields are identical in yml files
* Fixed a bug where sdk did not return any exit code

### 0.2.0

Expand Down
3 changes: 2 additions & 1 deletion demisto_sdk/__main__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import sys
from demisto_sdk.main import main


def console_entry() -> None:
main()
sys.exit(main())


if __name__ == '__main__':
Expand Down

0 comments on commit 8ea4d49

Please sign in to comment.