summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarley Travis <harleytravis123@outlook.com>2026-05-29 20:48:36 -0500
committerHarley Travis <harleytravis123@outlook.com>2026-05-29 20:48:36 -0500
commit6caf9f03266707974d3f658b9cde146f7c887455 (patch)
tree8d6d90ad19a873868de159c771e0dcbeee661030
parent07b8c4a33e4dd008b12b355a10213f0fe7dd287c (diff)
downloadtempleos-floppy-driver-6caf9f03266707974d3f658b9cde146f7c887455.tar.gz
Update Install.HC
I added a missing semicolon that caused the CopyTree call to trigger an exception upon being #included.
-rw-r--r--Install.HC2
1 files changed, 1 insertions, 1 deletions
diff --git a/Install.HC b/Install.HC
index 00aa318..c070217 100644
--- a/Install.HC
+++ b/Install.HC
@@ -6,7 +6,7 @@
// This program semi-automates the floppy driver install process.
-CopyTree("./Kernel/", "::/Kernel/")
+CopyTree("./Kernel/", "::/Kernel/");
"The driver files have now been copied to your Kernel directory\n";
"To complete the installation:\n\n";