Skip to content

Commit e4911e1

Browse files
authored
Merge pull request #78 from IShix-g/release
fix: correct key usage for build path retrieval
2 parents 143ac57 + b5f07ba commit e4911e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Editor/PackageExporter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public sealed class PackageExporter
1919
public static void Export()
2020
{
2121
var options = ArgumentsParser.GetValidatedOptions();
22-
var buildPath = options.GetValueOrDefault("buildsPath").TrimEnd('/');
22+
var buildPath = options.GetValueOrDefault("customBuildPath")?.TrimEnd('/');
2323
var exportPath = "./" + (!string.IsNullOrEmpty(buildPath) ? buildPath + "/" : "") + ToExportPath(_exportPath, options.GetValueOrDefault("tag"));
2424
Export(_folderPath, exportPath);
2525
}

0 commit comments

Comments
 (0)