@eht16 commented on this pull request.
> + check_call(cmd)
+
+
+def prepare_release_dir():
+ os.makedirs(RELEASE_DIR_ORIG, exist_ok=True)
+ if exists(RELEASE_DIR):
+ shutil.rmtree(RELEASE_DIR)
+ shutil.copytree(RELEASE_DIR_ORIG, RELEASE_DIR, symlinks=True, ignore=None)
+
+
+def convert_text_files(*paths):
+ for item in paths:
+ files = glob.glob(item)
+ for filename in files:
+ if isfile(filename):
+ run_command('unix2dos', '--quiet', filename)
Alright, thanks.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1408#discussion_r2157097852
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/pull/1408/review/[email protected]>