summaryrefslogtreecommitdiffstats
path: root/commands/true.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands/true.c')
-rw-r--r--commands/true.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/commands/true.c b/commands/true.c
index 24dea46929..b850f51651 100644
--- a/commands/true.c
+++ b/commands/true.c
@@ -26,7 +26,10 @@ static int do_true(int argc, char *argv[])
return 0;
}
+static const char *true_aliases[] = { ":", NULL};
+
BAREBOX_CMD_START(true)
+ .aliases = true_aliases,
.cmd = do_true,
BAREBOX_CMD_DESC("do nothing, successfully")
BAREBOX_CMD_GROUP(CMD_GRP_SCRIPT)