@capawesome/cli 4.8.1 → 4.8.2
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [4.8.2](https://github.com/capawesome-team/cli/compare/v4.8.1...v4.8.2) (2026-04-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* validate file existence before reading in `apps:certificates:create` and `apps:destinations:create` ([#151](https://github.com/capawesome-team/cli/issues/151)) ([5e9e405](https://github.com/capawesome-team/cli/commit/5e9e4055bce3f91026daba576c0c7a97b581c1ae))
|
|
11
|
+
|
|
5
12
|
## [4.8.1](https://github.com/capawesome-team/cli/compare/v4.8.0...v4.8.1) (2026-04-12)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -2,6 +2,7 @@ import appCertificatesService from '../../../services/app-certificates.js';
|
|
|
2
2
|
import appProvisioningProfilesService from '../../../services/app-provisioning-profiles.js';
|
|
3
3
|
import { withAuth } from '../../../utils/auth.js';
|
|
4
4
|
import { isInteractive } from '../../../utils/environment.js';
|
|
5
|
+
import { fileExistsAtPath } from '../../../utils/file.js';
|
|
5
6
|
import { prompt, promptAppSelection, promptOrganizationSelection } from '../../../utils/prompt.js';
|
|
6
7
|
import { defineCommand, defineOptions } from '@robingenz/zli';
|
|
7
8
|
import consola from 'consola';
|
|
@@ -130,12 +131,22 @@ export default defineCommand({
|
|
|
130
131
|
provisioningProfile = [profilePath];
|
|
131
132
|
}
|
|
132
133
|
}
|
|
134
|
+
const fileExists = await fileExistsAtPath(file);
|
|
135
|
+
if (!fileExists) {
|
|
136
|
+
consola.error(`The certificate file was not found or is not accessible: ${file}`);
|
|
137
|
+
process.exit(1);
|
|
138
|
+
}
|
|
133
139
|
const buffer = fs.readFileSync(file);
|
|
134
140
|
const fileName = path.basename(file);
|
|
135
141
|
// Upload provisioning profiles first
|
|
136
142
|
const provisioningProfileIds = [];
|
|
137
143
|
if (provisioningProfile && provisioningProfile.length > 0) {
|
|
138
144
|
for (const profilePath of provisioningProfile) {
|
|
145
|
+
const profileExists = await fileExistsAtPath(profilePath);
|
|
146
|
+
if (!profileExists) {
|
|
147
|
+
consola.error(`The provisioning profile file was not found or is not accessible: ${profilePath}`);
|
|
148
|
+
process.exit(1);
|
|
149
|
+
}
|
|
139
150
|
const profileBuffer = fs.readFileSync(profilePath);
|
|
140
151
|
const profileFileName = path.basename(profilePath);
|
|
141
152
|
const profile = await appProvisioningProfilesService.create({
|
|
@@ -3,6 +3,7 @@ import appDestinationsService from '../../../services/app-destinations.js';
|
|
|
3
3
|
import appGoogleServiceAccountKeysService from '../../../services/app-google-service-account-keys.js';
|
|
4
4
|
import { withAuth } from '../../../utils/auth.js';
|
|
5
5
|
import { isInteractive } from '../../../utils/environment.js';
|
|
6
|
+
import { fileExistsAtPath } from '../../../utils/file.js';
|
|
6
7
|
import { prompt, promptAppSelection, promptOrganizationSelection } from '../../../utils/prompt.js';
|
|
7
8
|
import { defineCommand, defineOptions } from '@robingenz/zli';
|
|
8
9
|
import consola from 'consola';
|
|
@@ -153,6 +154,11 @@ export default defineCommand({
|
|
|
153
154
|
}
|
|
154
155
|
}
|
|
155
156
|
// Upload Google service account key file
|
|
157
|
+
const googleServiceAccountKeyFileExists = await fileExistsAtPath(googleServiceAccountKeyFile);
|
|
158
|
+
if (!googleServiceAccountKeyFileExists) {
|
|
159
|
+
consola.error(`The Google service account key file was not found or is not accessible: ${googleServiceAccountKeyFile}`);
|
|
160
|
+
process.exit(1);
|
|
161
|
+
}
|
|
156
162
|
const buffer = fs.readFileSync(googleServiceAccountKeyFile);
|
|
157
163
|
const fileName = path.basename(googleServiceAccountKeyFile);
|
|
158
164
|
const key = await appGoogleServiceAccountKeysService.create({
|
|
@@ -205,6 +211,11 @@ export default defineCommand({
|
|
|
205
211
|
}
|
|
206
212
|
}
|
|
207
213
|
// Upload Apple API key file
|
|
214
|
+
const appleApiKeyFileExists = await fileExistsAtPath(appleApiKeyFile);
|
|
215
|
+
if (!appleApiKeyFileExists) {
|
|
216
|
+
consola.error(`The Apple API key file was not found or is not accessible: ${appleApiKeyFile}`);
|
|
217
|
+
process.exit(1);
|
|
218
|
+
}
|
|
208
219
|
const buffer = fs.readFileSync(appleApiKeyFile);
|
|
209
220
|
const fileName = path.basename(appleApiKeyFile);
|
|
210
221
|
const key = await appAppleApiKeysService.create({
|