Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
e79f766f
Commit
e79f766f
authored
16 years ago
by
Christian Goetze
Browse files
Options
Downloads
Patches
Plain Diff
Tweak output of test_all_platforms.py
parent
75b2af6d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/update_version_files.py
+16
-4
16 additions, 4 deletions
scripts/update_version_files.py
with
16 additions
and
4 deletions
scripts/update_version_files.py
+
16
−
4
View file @
e79f766f
...
@@ -4,10 +4,22 @@
...
@@ -4,10 +4,22 @@
# instead of having to figure it out by hand
# instead of having to figure it out by hand
#
#
from
os.path
import
realpath
,
dirname
,
join
,
exists
import
sys
setup_path
=
join
(
dirname
(
realpath
(
__file__
)),
"
setup-path.py
"
)
import
os
if
exists
(
setup_path
):
import
os.path
execfile
(
setup_path
)
root
=
os
.
path
.
abspath
(
__file__
)
while
root
!=
os
.
path
.
sep
:
root
=
os
.
path
.
dirname
(
root
)
dir
=
os
.
path
.
join
(
root
,
'
indra
'
,
'
lib
'
,
'
python
'
)
if
os
.
path
.
isdir
(
dir
):
if
dir
not
in
sys
.
path
:
sys
.
path
.
insert
(
0
,
dir
)
break
else
:
print
>>
sys
.
stderr
,
"
This script is not inside a valid installation.
"
sys
.
exit
(
1
)
import
getopt
,
sys
,
os
,
re
,
commands
import
getopt
,
sys
,
os
,
re
,
commands
from
indra.util
import
llversion
from
indra.util
import
llversion
...
...
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