@giuspen 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)

Here @eht16 

-- 
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1408#pullrequestreview-2937115228
You are receiving this because you are subscribed to this thread.

Message ID: <geany/geany-plugins/pull/1408/review/2937115...@github.com>

Reply via email to