We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ccb94e7 + 4369f7c commit 143ac57Copy full SHA for 143ac57
Assets/Editor/PackageExporter.cs
@@ -19,7 +19,8 @@ public sealed class PackageExporter
19
public static void Export()
20
{
21
var options = ArgumentsParser.GetValidatedOptions();
22
- var exportPath = "./" + ToExportPath(_exportPath, options.GetValueOrDefault("tag"));
+ var buildPath = options.GetValueOrDefault("buildsPath").TrimEnd('/');
23
+ var exportPath = "./" + (!string.IsNullOrEmpty(buildPath) ? buildPath + "/" : "") + ToExportPath(_exportPath, options.GetValueOrDefault("tag"));
24
Export(_folderPath, exportPath);
25
}
26
0 commit comments