Merge pull request 'CP Helper force flag' (#208) from cp-helper-force-flag into v5.0.0-dev
EIVE/-/pipeline/head This commit looks good Details

Reviewed-on: #208
This commit is contained in:
Marius Eggert 2023-06-22 16:37:22 +02:00
commit 5db9f383a6
2 changed files with 10 additions and 1 deletions

View File

@ -10,6 +10,12 @@ list yields a list of all related PRs for each release.
# [unreleased]
# [v5.0.0]
## Changed
- Force flag for copy helper.
# [v4.1.0] 2023-06-14
## Added

View File

@ -406,7 +406,10 @@ def pack_core_commands( # noqa C901
cp_recursive = int(input("Copy recursively (0/1) ?: "))
if cp_recursive not in [0, 1]:
raise ValueError("Invalid value, only 0 or 1 allowed")
user_data = bytearray([cp_recursive])
cp_force = int(input("Copy with force option(0/1) ?: "))
if cp_force not in [0, 1]:
raise ValueError("Invalid value, only 0 or 1 allowed")
user_data = bytearray([cp_recursive, cp_force])
user_data.extend(packet_source_dest_path("Copy"))
q.add_log_cmd(Info.CP_HELPER)
q.add_pus_tc(