Skip to content

Commit

Permalink
Fix for linus/macOS - path cased :[
Browse files Browse the repository at this point in the history
  • Loading branch information
chunkypixel committed Apr 24, 2019
1 parent c2edf38 commit b91af0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion out/pages/spriteeditor.js

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

2 changes: 1 addition & 1 deletion src/pages/spriteeditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class SpriteEditorPage implements vscode.Disposable {
console.log('debugger:SpriteEditorPage.openPage');

// Prepare
let contentPath = path.join(context.extensionPath, 'out', 'content', 'pages', 'spriteeditor');
let contentPath = path.join(context.extensionPath, 'out', 'content', 'pages', 'spriteEditor');
let columnToShowIn = vscode.window.activeTextEditor
? vscode.window.activeTextEditor.viewColumn
: undefined;
Expand Down

0 comments on commit b91af0a

Please sign in to comment.