diff --git a/src/ostree/main.c b/src/ostree/main.c index 5736f3c5..72231ab3 100644 --- a/src/ostree/main.c +++ b/src/ostree/main.c @@ -32,22 +32,21 @@ static OstreeCommand commands[] = { { "cat", ostree_builtin_cat, 0 }, + { "commit", ostree_builtin_commit, 0 }, { "config", ostree_builtin_config, 0 }, { "checkout", ostree_builtin_checkout, 0 }, { "checksum", ostree_builtin_checksum, OSTREE_BUILTIN_FLAG_NO_REPO }, { "diff", ostree_builtin_diff, 0 }, + { "fsck", ostree_builtin_fsck, 0 }, { "init", ostree_builtin_init, 0 }, - { "commit", ostree_builtin_commit, 0 }, - { "pull-local", ostree_builtin_pull_local, 0 }, { "log", ostree_builtin_log, 0 }, { "ls", ostree_builtin_ls, 0 }, - { "prune", ostree_builtin_prune, 0 }, - { "fsck", ostree_builtin_fsck, 0 }, { "pack", ostree_builtin_pack, 0 }, + { "prune", ostree_builtin_prune, 0 }, { "pull", NULL, 0 }, + { "pull-local", ostree_builtin_pull_local, 0 }, { "remote", ostree_builtin_remote, 0 }, { "rev-parse", ostree_builtin_rev_parse, 0 }, - { "remote", ostree_builtin_remote, 0 }, { "show", ostree_builtin_show, 0 }, { "unpack", ostree_builtin_unpack, 0 }, { "write-refs", ostree_builtin_write_refs, 0 },