Skip to content

Commit

Permalink
fix: debugger-ui incorrect path (#226)
Browse files Browse the repository at this point in the history
Summary:
---------

Missed this one while moving files around in #201.
Fixes #225


Test Plan:
----------

Verified locally on a clean project.
  • Loading branch information
thymikee authored Mar 12, 2019
1 parent 2057a9b commit 52b0007
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default class MiddlewareManager {
options: Options;

constructor(options: Options) {
const debuggerUIFolder = path.join(__dirname, '..', 'util', 'debugger-ui');
const debuggerUIFolder = path.join(__dirname, '..', 'debugger-ui');

this.options = options;
this.app = connect()
Expand Down

0 comments on commit 52b0007

Please sign in to comment.