File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ def add_mock_json
8282json_path = File . join ( client_dir , json_name )
8383json_relative_path = "PBLocalhost/#{ @client } /#{ json_name } "
8484if !File . exists? ( json_path )
85- UI . section ( "Creating file `#{ json_relative_path } `" ) do
85+ UI . section ( "Creating file `#{ json_name } `" ) do
8686json_file = File . new ( json_path , 'w' )
8787json_file . print ( "{\n \n }" )
8888changed = true
@@ -114,7 +114,7 @@ def add_mock_json
114114end
115115
116116# Save
117- UI . section ( "Adding reference `#{ json_relative_path } `" ) do
117+ UI . section ( "Adding reference `#{ json_name } `" ) do
118118project . save
119119@changed = true
120120end
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module UI
66class << self
77
88def section ( title )
9- message = "%-64s" % " #{ title } ..."
9+ message = "%-64s" % title
1010print message . yellow
1111
1212yield if block_given?
You can’t perform that action at this time.
0 commit comments