core: fix a typo
ostree config had two 'set' subcommands, but no 'get'.
This commit is contained in:
parent
4fa14eb712
commit
225cebd5ef
|
|
@ -104,7 +104,7 @@ ostree_builtin_config (int argc, char **argv, GFile *repo_path, GError **error)
|
||||||
if (!ostree_repo_write_config (repo, config, error))
|
if (!ostree_repo_write_config (repo, config, error))
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
else if (!strcmp (op, "set"))
|
else if (!strcmp (op, "get"))
|
||||||
{
|
{
|
||||||
GKeyFile *readonly_config = NULL;
|
GKeyFile *readonly_config = NULL;
|
||||||
ot_lfree char *value = NULL;
|
ot_lfree char *value = NULL;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue