diff options
author | Sheshashailavas Chinthakayala <sc2914@att.com> | 2018-11-12 22:28:37 +0000 |
---|---|---|
committer | Sheshashailavas Chinthakayala <sc2914@att.com> | 2018-11-12 22:29:33 +0000 |
commit | 8797a459b6a5c4516032260cc55663e08a2ab538 (patch) | |
tree | 7b5d9ab9eba158952c87afced4b4bd77a244f5b4 /dgbuilder/tools/splitFlows.sh | |
parent | 424327075cba872296535ffbfe69f32c228b218a (diff) |
[CCSDK-683] fixed dg import from local git repo
and also added option to view difference of json and xml since import
Change-Id: I4e2616f1880805bd74031020418ba2776616cbfa
Issue-ID: CCSDK-683
Signed-off-by: Sheshashailavas Chinthakayala <sc2914@att.com>
Diffstat (limited to 'dgbuilder/tools/splitFlows.sh')
-rwxr-xr-x | dgbuilder/tools/splitFlows.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dgbuilder/tools/splitFlows.sh b/dgbuilder/tools/splitFlows.sh new file mode 100755 index 00000000..ccb70cf9 --- /dev/null +++ b/dgbuilder/tools/splitFlows.sh @@ -0,0 +1,8 @@ +if [ "$#" != "2" ] +then + echo "Usage: $0 full_path_to_flows_json_file full_path_to_output_dir" + exit +fi +rm -rf "$2" 2>/dev/null +mkdir "$2" 2>/dev/null +node ${PROJECT_HOME}/tools/splitFlows.js $1 $2 |