Skip to content

Commit

Permalink
fixed some type
Browse files Browse the repository at this point in the history
  • Loading branch information
akaJes committed Jun 13, 2018
1 parent 28f8128 commit eba39fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ app.get('/pio/:env/:port', function (req, res) {
if (close)
params.push('--upload-port',port)
console.log(); //if removed - process hangs :)
(close && store.mods.serial ? sore.mods.serial.close(port) : Promise.resolve(true))
(close && store.mods.serial ? store.mods.serial.close(port) : Promise.resolve(true))
.then(pioRoot)
.then(file => {
var cmd = pio.run(params, res, path.dirname(file));
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "marlin-conf",
"version": "2.10.2",
"version": "2.10.3",
"description": "configuration tool for Marlin project",
"main": "./index.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions static/editor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<title>Editor</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script src="/version/Editor"></script>
<script src="/libs/jquery/dist/jquery.min.js"></script>
<script src="/libs/ace-builds/src/ace.js"></script>
<script src="/libs/ace-builds/src/ext-beautify.js"></script>
Expand Down

0 comments on commit eba39fd

Please sign in to comment.