summaryrefslogtreecommitdiff
path: root/src/ostree/ot-builtin-remote.c
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-01-13 15:08:27 -0500
committerColin Walters <walters@verbum.org>2012-01-13 15:08:27 -0500
commit40226c2769a295c2d5be8d35dc19477f634624e8 (patch)
tree1114a3d2f9536a78ae193a545ace217458dfb220 /src/ostree/ot-builtin-remote.c
parent0d21187f14abd7067fbeadba406e947a6605f2a4 (diff)
downloadostree-40226c2769a295c2d5be8d35dc19477f634624e8.tar.gz
core: Move triggers into separate binary: ostree-run-triggers
I'm trying to keep ostree as being closer to just being the versioning filesystem, so let's split out the triggers into a different binary (although still namespaced ostree-).
Diffstat (limited to 'src/ostree/ot-builtin-remote.c')
-rw-r--r--src/ostree/ot-builtin-remote.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ostree/ot-builtin-remote.c b/src/ostree/ot-builtin-remote.c
index 41510bc5..6ec33460 100644
--- a/src/ostree/ot-builtin-remote.c
+++ b/src/ostree/ot-builtin-remote.c
@@ -47,7 +47,6 @@ ostree_builtin_remote (int argc, char **argv, GFile *repo_path, GError **error)
GOptionContext *context;
gboolean ret = FALSE;
OstreeRepo *repo = NULL;
- OstreeCheckout *checkout = NULL;
const char *op;
GKeyFile *config = NULL;
@@ -99,6 +98,5 @@ ostree_builtin_remote (int argc, char **argv, GFile *repo_path, GError **error)
if (config)
g_key_file_free (config);
g_clear_object (&repo);
- g_clear_object (&checkout);
return ret;
}