Skip to content

Commit

Permalink
fix: use right casing for gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Jun 4, 2024
1 parent e30b3fd commit f6cf84d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/prepare.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const bundleInstall = async ({
};

const buildGem = async ({
gemspec,
gemSpec,
gemName,
version,
cwd,
Expand All @@ -58,7 +58,7 @@ const buildGem = async ({

logger.log("Building gem `%s`", gemFile);

const buildResult = execa("gem", ["build", gemspec], { cwd, env });
const buildResult = execa("gem", ["build", gemSpec], { cwd, env });

buildResult.stdout.pipe(stdout, { end: false });

Expand Down

0 comments on commit f6cf84d

Please sign in to comment.