fix extension matching for current file

pull/3094/head
dm4 6 years ago
parent be2e4fe26c
commit 9231a2ab56
  1. 2
      src/app/tabs/compile-tab.js

@ -476,7 +476,7 @@ module.exports = class CompileTab {
self._deps.editor.clearAnnotations()
var currentFile = self._deps.config.get('currentFile')
if (currentFile) {
if (/.(.sol)$/.exec(currentFile)) {
if (/\.sol$/.exec(currentFile)) {
// only compile *.sol file.
var target = currentFile
var sources = {}

Loading…
Cancel
Save