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
G
grew
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
grew
grew
Commits
85fc96a3
Commit
85fc96a3
authored
Dec 15, 2017
by
Bruno Guillaume
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add call to grew_gui_dev when needed
parent
92950ea3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/grew_main.ml
src/grew_main.ml
+2
-1
No files found.
src/grew_main.ml
View file @
85fc96a3
...
...
@@ -29,7 +29,8 @@ let _ =
|
Grew_args
.
Test
->
failwith
"No test available"
|
Grew_args
.
Gui
args
->
match
Unix
.
system
(
"grew_gui "
^
args
)
with
let
gui_exec
=
if
Sys
.
argv
.
(
0
)
=
"grew_dev"
then
"grew_gui_dev"
else
"grew_gui"
in
match
Unix
.
system
(
gui_exec
^
" "
^
args
)
with
|
Unix
.
WEXITED
i
when
i
<>
0
->
Log
.
warning
"It seems that grew_gui is not installed on your system. Try to run
\"
opam install grew_gui
\"
"
|
_
->
()
...
...
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