[Title] cli: fixed a filter problem
authorJihoon Song <jihoon80.song@samsung.com>
Wed, 12 Jun 2013 02:40:04 +0000 (11:40 +0900)
committerJihoon Song <jihoon80.song@samsung.com>
Wed, 12 Jun 2013 02:40:04 +0000 (11:40 +0900)
[Desc.]
[Issue]

Change-Id: I60a960ff6660467561cb582ba842f92e7a22e659

org.tizen.cli/src/org/tizen/cli/exec/web/build/Main.java

index 31c5db1..29d463e 100755 (executable)
@@ -98,9 +98,10 @@ extends AbstractLauncher
     protected static final String RESOURCE_LAYER_START = "start";
     protected static final String RESOURCE_LAYER_END = "end";
 
+    // file filter. If you want to exclude a directory, append '/*'
     private static final String[] DEFAULT_EXCLUDES = {".build"+File.separator+"*"
                                                     , ".project"
-                                                    , ".settings"
+                                                    , ".settings" + File.separator + "*"
                                                     , ".sdk_delta.info"
                                                     , "*.wgt"};