File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ static void Main(string[] args)
120
120
}
121
121
122
122
exportPath = Path . GetDirectoryName ( file ) ;
123
- exportPath = Path . GetFullPath ( Path . Combine ( exportPath , "..\\ Export" ) ) ;
123
+ exportPath = Path . GetFullPath ( Path . Combine ( exportPath , "..\\ out \\ Export" ) ) ;
124
124
125
125
}
126
126
else if ( res != null )
@@ -129,7 +129,7 @@ static void Main(string[] args)
129
129
prj = Projects . AttachProject ( ver ) ;
130
130
131
131
exportPath = Path . GetDirectoryName ( prj . ProjectFile ) ;
132
- exportPath = Path . GetFullPath ( Path . Combine ( exportPath , "..\\ Export" ) ) ;
132
+ exportPath = Path . GetFullPath ( Path . Combine ( exportPath , "..\\ out \\ Export" ) ) ;
133
133
}
134
134
else
135
135
{
@@ -165,6 +165,9 @@ static void Main(string[] args)
165
165
user = args [ 3 ] ;
166
166
if ( args . Length > 4 )
167
167
password = args [ 4 ] ;
168
+ if ( args . Length > 5 )
169
+ exportPath = args [ 5 ] ;
170
+
168
171
}
169
172
170
173
if ( prj == null )
You can’t perform that action at this time.
0 commit comments