Skip to content

Commit

Permalink
Fix escaped path spaces (#15)
Browse files Browse the repository at this point in the history
Fix #14; path spaces escaped
  • Loading branch information
sophiebremer authored Apr 20, 2024
1 parent 6b9569e commit a51596d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/installer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/installer.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/installer/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export namespace Installer {
export const CWD = process.cwd();


export const DIR = Path.dirname( import.meta.url.substring( 7 ) );
export const DIR = Path.dirname( decodeURIComponent( import.meta.url.substring( 7 ) ) );


export const VERSION = 'Version ' + (
Expand Down

0 comments on commit a51596d

Please sign in to comment.