diff --git a/extern/pfd-fixed/portable-file-dialogs.h b/extern/pfd-fixed/portable-file-dialogs.h index 8e5ca5079..134cc6cf7 100644 --- a/extern/pfd-fixed/portable-file-dialogs.h +++ b/extern/pfd-fixed/portable-file-dialogs.h @@ -652,6 +652,11 @@ inline void internal::executor::start(int exit_code) #else inline void internal::executor::start_process(std::vector const &command) { + printf("---- WILL EXECUTE:\n"); + for (std::string& i: command) { + printf("- %s\n",i.c_str()); + } + printf("END\n"); stop(); m_stdout.clear(); m_exit_code = -1;