@webhippie/semantic-release-rubygem 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/prepare.js +2 -2
- package/package.json +1 -1
package/lib/prepare.js
CHANGED
|
@@ -45,7 +45,7 @@ const bundleInstall = async ({
|
|
|
45
45
|
};
|
|
46
46
|
|
|
47
47
|
const buildGem = async ({
|
|
48
|
-
|
|
48
|
+
gemSpec,
|
|
49
49
|
gemName,
|
|
50
50
|
version,
|
|
51
51
|
cwd,
|
|
@@ -58,7 +58,7 @@ const buildGem = async ({
|
|
|
58
58
|
|
|
59
59
|
logger.log("Building gem `%s`", gemFile);
|
|
60
60
|
|
|
61
|
-
const buildResult = execa("gem", ["build",
|
|
61
|
+
const buildResult = execa("gem", ["build", gemSpec], { cwd, env });
|
|
62
62
|
|
|
63
63
|
buildResult.stdout.pipe(stdout, { end: false });
|
|
64
64
|
|
package/package.json
CHANGED