diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-28 05:58:50 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-28 05:58:50 +0100 |
| commit | 1e5c68d05b2381d9ea8d26759b1bbf00ca0fc5d3 (patch) | |
| tree | 49293d36099972a4ede2d84c68d5fe1a967dd7e1 | |
| parent | 5b1f105de50b0108ef4b8334caeecc7524f3ebf3 (diff) | |
chore: update libconf.pl, introduce exit sub.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | libconf.pl | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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"; |
