Skip to content

Commit 07d9ba7

Browse files
authored
Feature/fix pdf output path (#126)
* Fix from rawlog * Fixed pdf output path
1 parent 8dd9b00 commit 07d9ba7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resume-generator/create_pdf_from_html.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ const __filename = fileURLToPath(import.meta.url);
6060
const __dirname = path.dirname(__filename);
6161

6262
const input_html_file = path.resolve(__dirname, '..', 'build/resume', 'index.html');
63-
const output_pdf_file = path.resolve(__dirname, '..', 'build/public', 'resume.pdf');
63+
const output_pdf_file = path.resolve(__dirname, '..', 'build', 'resume.pdf');
6464

65-
create_pdf_from_html(input_html_file, output_pdf_file);
65+
create_pdf_from_html(input_html_file, output_pdf_file);

0 commit comments

Comments
 (0)