Skip to content

Commit

Permalink
🔊 Add logs for asset moving
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandChowdhary authored Feb 25, 2021
1 parent 67a4145 commit e14d2b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion post-process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ export const postProcess = async () => {
try {
if (await pathExists(join(".", "assets")))
await copy(join(".", "assets"), join("__sapper__", "export"), { recursive: true });
} catch (error) {}
} catch (error) {
console.log("Got an error in copying assets", error);
}

const [owner, repo] = (process.env.GITHUB_REPOSITORY || "").split("/");

Expand Down

0 comments on commit e14d2b0

Please sign in to comment.