We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 501ec82 commit c20aa22Copy full SHA for c20aa22
.changeset/young-toys-grab.md
@@ -0,0 +1,5 @@
1
+---
2
+'@rnef/cli': patch
3
4
+
5
+fix: check for args.binaryPath before bailing with no app.tar.gz
packages/cli/src/lib/plugins/remoteCache.ts
@@ -132,7 +132,7 @@ async function remoteCache({
132
const isAppDirectory = fs.statSync(binaryPath).isDirectory();
133
if (isAppDirectory) {
134
const appName = path.basename(binaryPath);
135
- if (!fs.existsSync(absoluteTarballPath)) {
+ if (args.binaryPath && !fs.existsSync(absoluteTarballPath)) {
136
throw new RnefError(
137
`No tarball found for "${artifactName}" in "${localArtifactPath}".`
138
);
0 commit comments