summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-02-28 05:58:50 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-02-28 05:58:50 +0100
commit1e5c68d05b2381d9ea8d26759b1bbf00ca0fc5d3 (patch)
tree49293d36099972a4ede2d84c68d5fe1a967dd7e1
parent5b1f105de50b0108ef4b8334caeecc7524f3ebf3 (diff)
chore: update libconf.pl, introduce exit sub.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--libconf.pl10
1 files changed, 8 insertions, 2 deletions
diff --git a/libconf.pl b/libconf.pl
index 1a1bc7e..daad546 100644
--- a/libconf.pl
+++ b/libconf.pl
@@ -11,8 +11,14 @@ sub new() {
die "You must be root to run this script.\n";
}
- system("sh", "git", "submodule", "update", "--init", "--recursive") or die "Git error: $!";
+ system("sh", "git", "submodule", "update", "--init", "--recursive") or die "git: error: $!";
}
-"libconf"; \ No newline at end of file
+sub exit() {
+
+ exit;
+
+}
+
+"libconf";