Skip to content

Commit 782fd40

Browse files
craftzdogmarijnh
authored andcommitted
[powershell mode] Fix invalid CodeMirror module path
1 parent c4d8e10 commit 782fd40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mode/powershell/powershell.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
(function(mod) {
55
'use strict';
66
if (typeof exports == 'object' && typeof module == 'object') // CommonJS
7-
mod(require('codemirror'));
7+
mod(require('../../lib/codemirror'));
88
else if (typeof define == 'function' && define.amd) // AMD
9-
define(['codemirror'], mod);
9+
define(['../../lib/codemirror'], mod);
1010
else // Plain browser env
1111
mod(window.CodeMirror);
1212
})(function(CodeMirror) {

0 commit comments

Comments
 (0)