Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
iTasks-electron
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Camil Staps
iTasks-electron
Commits
7bd7b876
Verified
Commit
7bd7b876
authored
Mar 26, 2020
by
Camil Staps
🚀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Expect that the app executable ends in .exe
parent
d4848ad9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Electron/WebPublic/js/clean-electron.js
Electron/WebPublic/js/clean-electron.js
+1
-1
No files found.
Electron/WebPublic/js/clean-electron.js
View file @
7bd7b876
...
...
@@ -169,7 +169,7 @@ function run (_opts) {
const
opts
=
DEFAULTS
;
Object
.
assign
(
opts
,
_opts
);
const
server
=
spawn
(
'
./
'
+
opts
.
app
,[
'
--port
'
,
opts
.
port
],{
stdio
:
'
inherit
'
});
const
server
=
spawn
(
'
./
'
+
opts
.
app
+
'
.exe
'
,[
'
--port
'
,
opts
.
port
],{
stdio
:
'
inherit
'
});
server
.
on
(
'
close
'
,
code
=>
{
if
(
code
!==
0
&&
code
!==
null
)
console
.
log
(
'
iTasks exited with exit code
'
+
code
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment