From 3a859096aa5f7db8741f040120198c21a96f58a5 Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Wed, 20 Sep 2023 17:37:49 +0600 Subject: [PATCH] Test build - revert after testing --- source/ubl-settings-repomanager.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/ubl-settings-repomanager.c b/source/ubl-settings-repomanager.c index df2d52b..4532256 100644 --- a/source/ubl-settings-repomanager.c +++ b/source/ubl-settings-repomanager.c @@ -290,8 +290,10 @@ void on_save(){ if (add_signed_command){ yon_launch(add_signed_command); yon_ubl_status_box_render(OPERATION_DONE_LABEL,BACKGROUND_IMAGE_SUCCESS_TYPE);} if (add_command) { yon_launch(add_command); + printf("%s\n",add_command); yon_ubl_status_box_render(OPERATION_DONE_LABEL,BACKGROUND_IMAGE_SUCCESS_TYPE);} if (remove_command) { yon_launch(remove_command); + printf("%s\n",remove_command); yon_ubl_status_box_render(OPERATION_DONE_LABEL,BACKGROUND_IMAGE_SUCCESS_TYPE);} if (pack_groups){ dictionary *dct; @@ -303,6 +305,7 @@ void on_save(){ } char *sign_command = yon_char_unite(command, " add -f -d ",origin_flagged," -r ",name_flagged," --sign-pkg ", dct->key," -p $(find ",origin_flagged,"/pool/overlay -name ", signed_packs,")",NULL); yon_launch(sign_command); + printf("%s\n",sign_command); } } @@ -310,6 +313,7 @@ void on_save(){ char *repo_sign_command = yon_char_unite(command, " add -f -d ",origin_flagged, " -r ", name_flagged, " --sign-repo ", repo_sign_flagged ,NULL); yon_window_config_add_custom_parameter(yon_char_unite(origin_flagged,NULL),"signatures",repo_sign_flagged_full,YON_TYPE_STRING); yon_launch(repo_sign_command); + printf("%s\n",repo_sign_command); } } }