From 5a74babaaba16d2449b965d1c6c54bfd9366ca47 Mon Sep 17 00:00:00 2001
From: David Polakovic <email@dpolakovic.space>
Date: Mon, 5 Feb 2024 11:05:24 +0100
Subject: [PATCH] fixed Windows copy command

---
 tti.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tti.pl b/tti.pl
index 6ea39a0..4f2e06a 100644
--- a/tti.pl
+++ b/tti.pl
@@ -20,7 +20,7 @@ my $new_filename = "processed_" . $filename;
 # copy the file
 if ($^O eq 'MSWin32' or $^O eq 'MSWin64') {
     # for Windows
-    system("cp", $filename, $new_filename);
+    system("copy", $filename, $new_filename);
 } else {
     # for every other system
     system("cp", $filename, $new_filename);
-- 
2.30.2