Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gga_load_data
Manage
Activity
Members
Labels
Plan
Issues
12
Issue boards
Milestones
Wiki
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
abims
e-infra
gga_load_data
Commits
d94dc42c
Commit
d94dc42c
authored
3 years ago
by
Loraine Gueguen
Browse files
Options
Downloads
Patches
Plain Diff
Symlink banner instead of copy, in speciesDir
parent
9b4f2a91
No related branches found
No related tags found
2 merge requests
!9
Release 2.0 (merge dev to master)
,
!8
Release 2.0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gga_init.py
+4
-5
4 additions, 5 deletions
gga_init.py
with
4 additions
and
5 deletions
gga_init.py
+
4
−
5
View file @
d94dc42c
...
@@ -62,11 +62,10 @@ class DeploySpeciesStack(speciesData.SpeciesData):
...
@@ -62,11 +62,10 @@ class DeploySpeciesStack(speciesData.SpeciesData):
# use the default banner instead
# use the default banner instead
if
"
banner_path
"
in
self
.
config
.
keys
():
if
"
banner_path
"
in
self
.
config
.
keys
():
if
not
config
[
"
banner_path
"
]
==
""
and
os
.
path
.
isfile
(
os
.
path
.
abspath
(
config
[
"
banner_path
"
])):
if
not
config
[
"
banner_path
"
]
==
""
and
os
.
path
.
isfile
(
os
.
path
.
abspath
(
config
[
"
banner_path
"
])):
banner_dest_path
=
os
.
path
.
abspath
(
"
./banner.png
"
)
banner_dest_path
=
os
.
path
.
join
(
self
.
species_dir
,
os
.
path
.
abspath
(
"
banner.png
"
))
logging
.
info
(
"
Custom banner path: %s
"
%
self
.
config
[
"
banner_path
"
])
if
not
os
.
path
.
samefile
(
os
.
path
.
abspath
(
config
[
"
banner_path
"
]),
banner_dest_path
):
# if os.path.samefile(os.path.abspath(config["banner_path"]), banner_dest_path):
os
.
symlink
(
os
.
path
.
abspath
(
self
.
config
[
"
banner_path
"
]),
banner_dest_path
)
# shutil.copy(os.path.abspath(self.config["banner_path"]), banner_dest_path)
logging
.
info
(
"
Custom banner added: symlink from %s
"
%
self
.
config
[
"
banner_path
"
])
shutil
.
copy
(
os
.
path
.
abspath
(
self
.
config
[
"
banner_path
"
]),
banner_dest_path
)
else
:
else
:
logging
.
debug
(
"
Using default banner for Tripal pages
"
)
logging
.
debug
(
"
Using default banner for Tripal pages
"
)
self
.
config
.
pop
(
"
banner_path
"
,
None
)
self
.
config
.
pop
(
"
banner_path
"
,
None
)
...
...
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