Skip to content

Commit

Permalink
fix web path, fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaiblaga89 committed Sep 14, 2023
1 parent 41f055c commit 470f120
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/rnv/src/core/projectManager/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ export const copyAssetsFolder = async (
}
});

const destPath = path.join(getPlatformProjectDir(c)!, subPath!);
const destPath = subPath ? path.join(getPlatformProjectDir(c)!, subPath) : getPlatformProjectDir(c)!;

// FOLDER MERGERS FROM EXTERNAL SOURCES
if (validAssetSources.length > 0) {
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk-apple/src/fastlane.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const registerDevice = async (c: Context) => {
}
};

export const updateProfile = async (c: Context) => {
export const updateProfile = async (c: Context): Promise<boolean> => {
logTask(`updateProfile`, chalk().grey);

// TODO: run trough all schemes
Expand Down

0 comments on commit 470f120

Please sign in to comment.