Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
i2MassChroQ
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
PAPPSO
i2MassChroQ
Commits
afb0c500
Commit
afb0c500
authored
11 years ago
by
Olivier Langella
Browse files
Options
Downloads
Patches
Plain Diff
check that command file exists and is executable
parent
beb9f82a
No related branches found
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/fr/inra/pappso/xtandempipeline/thread/base_shell.java
+10
-1
10 additions, 1 deletion
src/fr/inra/pappso/xtandempipeline/thread/base_shell.java
with
10 additions
and
1 deletion
src/fr/inra/pappso/xtandempipeline/thread/base_shell.java
+
10
−
1
View file @
afb0c500
...
...
@@ -45,6 +45,15 @@ public class base_shell {
public
void
start_process
()
throws
Exception
{
if
(
application
.
equals
(
""
))
throw
new
MSMSException
(
"No application specified"
);
File
appFile
=
new
File
(
application
);
if
(!
appFile
.
exists
())
{
throw
new
MSMSException
(
"no command file named : \n"
+
appFile
.
getAbsolutePath
());
}
if
(!
appFile
.
canExecute
())
{
throw
new
MSMSException
(
"unable to execute command : \n"
+
appFile
.
getAbsolutePath
());
}
build
=
new
ProcessBuilder
(
commande
);
build
.
redirectErrorStream
(
true
);
process_run
=
build
.
start
();
...
...
@@ -92,7 +101,7 @@ public class base_shell {
while
(
line
!=
-
1
)
{
// processing(line);
stdout
.
append
((
char
)
line
);
//System.out.print((char)line);
//
System.out.print((char)line);
line
=
reader
.
read
();
}
}
finally
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment