jaehyun pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=52695c9a566e3a5e9e8123ba047118abc3da0e7c

commit 52695c9a566e3a5e9e8123ba047118abc3da0e7c
Author: Jaehyun Cho <[email protected]>
Date:   Mon Jun 13 13:26:38 2016 +0900

    main: Fix workspace path option to work.
    
    Workspace path option did not work because option type was changed
    incorrectly.
    Now the option type has been changed from list strings to one string
    correctly.
---
 src/bin/main.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/bin/main.c b/src/bin/main.c
index e5e46f8..29d0289 100644
--- a/src/bin/main.c
+++ b/src/bin/main.c
@@ -270,8 +270,7 @@ args_dispatch(int argc, char **argv,
                                       "path", ECORE_GETOPT_TYPE_STR),
           ECORE_GETOPT_APPEND_METAVAR('d', "dd", "Data path",
                                       "path", ECORE_GETOPT_TYPE_STR),
-          ECORE_GETOPT_APPEND_METAVAR('w', "wd", "Workspace path",
-                                      "path", ECORE_GETOPT_TYPE_STR),
+          ECORE_GETOPT_STORE_STR('w', "wd", "Workspace path"),
           ECORE_GETOPT_VERSION('v', "version"),
           ECORE_GETOPT_COPYRIGHT('c', "copyright"),
           ECORE_GETOPT_LICENSE('l', "license"),

-- 


Reply via email to