Skip to content

Commit

Permalink
[bug] Handling target installation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaliy Zarubin committed Oct 12, 2024
1 parent d6f0b2e commit d84d0b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aurora_cli/src/base/common/features/shell_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def shell_psdk_tooling_create(

percent_end(percents, progress)

result = shell_check_error_out(stdout, stderr, ['error'])
result = shell_check_error_out(stdout, stderr, ['error', 'permitted'])
if result.is_error():
return result

Expand Down Expand Up @@ -167,7 +167,7 @@ def shell_psdk_target_create(

percent_end(percents, progress)

result = shell_check_error_out(stdout, stderr, ['error'])
result = shell_check_error_out(stdout, stderr, ['error', 'permitted'])
if result.is_error():
return result

Expand Down
2 changes: 1 addition & 1 deletion aurora_cli/src/base/constants/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

APP_NAME = 'aurora-cli'

APP_VERSION = '3.0.4'
APP_VERSION = '3.0.5'

PATH_DIR = '~/.aurora-cli'

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

setuptools.setup(
name='aurora-cli',
version='3.0.4.0',
version='3.0.5.0',
author='Vitaliy Zarubin',
author_email='keygenqt@gmail.com',
description='An application that simplifies the life of an application developer for the Aurora OS.',
Expand Down

0 comments on commit d84d0b2

Please sign in to comment.