Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Kudo committed Sep 12, 2023
1 parent 2d374b8 commit 9ee663e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/preview-build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72631,7 +72631,7 @@ function importFingerprint(fingerprintLibRoot) {
}
catch (e) {
if (e instanceof Error) {
throw e;
throw new Error(`Failed to import @expo/fingerprint from ${fingerprintLibRoot}: ${e.stack}`);
}
else {
throw new Error(`Failed to import @expo/fingerprint from ${fingerprintLibRoot}.`);
Expand Down
2 changes: 1 addition & 1 deletion src/actions/preview-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function importFingerprint(fingerprintLibRoot: string): typeof Fingerprint {
return require(resolveFrom(fingerprintLibRoot, '@expo/fingerprint'));
} catch (e: unknown) {
if (e instanceof Error) {
throw e;
throw new Error(`Failed to import @expo/fingerprint from ${fingerprintLibRoot}: ${e.stack}`);
} else {
throw new Error(`Failed to import @expo/fingerprint from ${fingerprintLibRoot}.`);
}
Expand Down

0 comments on commit 9ee663e

Please sign in to comment.