You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix undefined variable references in dev-branch conversion
Addresses review feedback from @rhoerr on PR #218.
Fixed three scope issues where variables were referenced incorrectly:
1. chooseNameAndVersion (line 118): Changed `ref` to `instruction.ref` since `ref` is not a parameter
2. createComposerJsonOnlyPackage (line 396): Changed `release` and `ref` to `release.version` and `release.ref`
3. createMetaPackageFromRepoDir (line 694): Changed `release`, `dependencyVersions[name]`, and `ref` to proper release object properties
These fixes ensure the dev-branch format conversion logic accesses the correct variables in scope.
0 commit comments