doc: add new document quick-tutorial
[src/app-framework-main.git] / src / wgtpkg-installer.c
index def311c..ea08fce 100644 (file)
@@ -1,6 +1,8 @@
 /*
  Copyright 2015 IoT.bzh
 
+ author: José Bollo <jose.bollo@iot.bzh>
+
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
 #include <errno.h>
 #include <getopt.h>
 
+#include <libxml/tree.h>
+
 #include "verbose.h"
-#include "wgtpkg.h"
+#include "wgtpkg-permissions.h"
+#include "wgtpkg-xmlsec.h"
+#include "wgt-info.h"
+#include "wgtpkg-install.h"
 
 static const char appname[] = "wgtpkg-installer";
 static const char *root;
@@ -60,6 +67,7 @@ static struct option options[] = {
 int main(int ac, char **av)
 {
        int i;
+       struct wgt_info *ifo;
 
        LOGAUTH(appname);
 
@@ -105,8 +113,11 @@ int main(int ac, char **av)
        /* install widgets */
        av += optind;
        root = *av++;
-       for ( ; *av ; av++)
-               install_widget(*av, root, force);
+       for ( ; *av ; av++) {
+               ifo = install_widget(*av, root, force);
+               if (ifo)
+                       wgt_info_unref(ifo);
+       }
 
        return 0;
 }