Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
software
gridtk
Commits
5c26d3a3
Commit
5c26d3a3
authored
Aug 29, 2013
by
Manuel Günther
Browse files
Removed warning on command line when executed outside Idiap.
parent
eac5be4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
gridtk/setshell.py
View file @
5c26d3a3
...
...
@@ -19,17 +19,18 @@ def environ(context):
# It seems that we are in a hostile environment
# try to source the Idiap-wide shell
idiap_source
=
"/idiap/resource/software/initfiles/shrc"
logger
.
debug
(
"Sourcing: '%s'"
%
idiap_source
)
try
:
command
=
[
'bash'
,
'-c'
,
'source %s && env'
%
idiap_source
]
pi
=
subprocess
.
Popen
(
command
,
stdout
=
subprocess
.
PIPE
)
# overwrite the default environment
for
line
in
pi
.
stdout
:
(
key
,
_
,
value
)
=
line
.
partition
(
"="
)
os
.
environ
[
key
.
strip
()]
=
value
.
strip
()
except
OSError
as
e
:
# occurs when the file is not executable or not found
pass
if
os
.
path
.
exists
(
idiap_source
):
logger
.
debug
(
"Sourcing: '%s'"
%
idiap_source
)
try
:
command
=
[
'bash'
,
'-c'
,
'source %s && env'
%
idiap_source
]
pi
=
subprocess
.
Popen
(
command
,
stdout
=
subprocess
.
PIPE
)
# overwrite the default environment
for
line
in
pi
.
stdout
:
(
key
,
_
,
value
)
=
line
.
partition
(
"="
)
os
.
environ
[
key
.
strip
()]
=
value
.
strip
()
except
OSError
as
e
:
# occurs when the file is not executable or not found
pass
# in case the BASEDIRSETSHELL environment variable is not set,
# we are not at Idiap,
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment