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

Commit b7a3bb9

Browse files
author
Bowden Kelly
authored
Merge pull request #24 from kevguy/fix-copy
fix: copying issues
2 parents d02200a + 7d27c2d commit b7a3bb9

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

copyStaticAssets.js

+3-3
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

-1
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)