Skip to content

Commit

Permalink
fix release pipeline (#805)
Browse files Browse the repository at this point in the history
Signed-off-by: Kim Brose <kim.brose@nordeck.net>
Co-authored-by: Kim Brose <kim.brose@nordeck.net>
  • Loading branch information
HarHarLinks and HarHarLinks authored Oct 18, 2024
1 parent ab6abc5 commit 65138f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/publishAllPackages.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const child_process = require('child_process');

const packages = fs.readdirSync('packages');

for (var package of packages) {
const packagePath = path.resolve('packages', package);
for (var pkg of packages) {
const packagePath = path.resolve('packages', pkg);

if (!fs.lstatSync(packagePath).isDirectory()) {
continue;
Expand Down

0 comments on commit 65138f4

Please sign in to comment.