radiant-docs 0.1.2 → 0.1.3
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/dist/index.js +0 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -114,7 +114,6 @@ async function installDependencies(cacheDir) {
|
|
|
114
114
|
execSync("npm install --silent --no-fund --no-audit", {
|
|
115
115
|
cwd: cacheDir,
|
|
116
116
|
stdio: "pipe",
|
|
117
|
-
shell: process.env.SHELL || "/bin/sh",
|
|
118
117
|
env: process.env
|
|
119
118
|
});
|
|
120
119
|
log.success("Dependencies installed.");
|
|
@@ -143,7 +142,6 @@ async function runAstroSync(cacheDir) {
|
|
|
143
142
|
execSync("npx astro sync", {
|
|
144
143
|
cwd: cacheDir,
|
|
145
144
|
stdio: "pipe",
|
|
146
|
-
shell: process.env.SHELL || "/bin/sh",
|
|
147
145
|
env: process.env
|
|
148
146
|
});
|
|
149
147
|
} catch {
|