Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 6d9fee1

Browse files
author
Bowden Kelly
authored
Merge pull request #24 from kevguy/fix-copy
fix: copying issues
2 parents 9601c65 + 5472454 commit 6d9fee1

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

copyStaticAssets.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var shell = require('shelljs');
22

3-
shell.cp('-R', 'src/public/js/lib', 'dist/public/js/lib');
4-
shell.cp('-R', 'src/public/fonts', 'dist/public/fonts');
5-
shell.cp('-R', 'src/public/images', 'dist/public/images');
3+
shell.cp('-R', 'src/public/js/lib', 'dist/public/js/');
4+
shell.cp('-R', 'src/public/fonts', 'dist/public/');
5+
shell.cp('-R', 'src/public/images', 'dist/public/');

src/controllers/home.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ export let index = (req: Request, res: Response) => {
99
title: "Home"
1010
});
1111
};
12-

0 commit comments

Comments
 (0)