Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
105
Merge Requests
105
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos
Commits
6b5dfde2
Commit
6b5dfde2
authored
Jun 10, 2022
by
Jérome Perrin
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixup! software/theia: fix instance error when instance is not ASCII
parent
5a076557
Pipeline
#22042
failed with stage
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
software/theia/buildout.hash.cfg
software/theia/buildout.hash.cfg
+1
-1
software/theia/instance-theia.cfg.jinja.in
software/theia/instance-theia.cfg.jinja.in
+2
-2
No files found.
software/theia/buildout.hash.cfg
View file @
6b5dfde2
...
...
@@ -15,7 +15,7 @@
[instance-theia]
_update_hash_filename_ = instance-theia.cfg.jinja.in
md5sum =
5a0caaa7004c0af8d2e8fdc7bc96a18f
md5sum =
f1b06742154b97d4173dd11e0949569d
[instance]
_update_hash_filename_ = instance.cfg.in
...
...
software/theia/instance-theia.cfg.jinja.in
View file @
6b5dfde2
...
...
@@ -338,12 +338,12 @@ install =
gravatar_url = "https://www.gravatar.com/avatar/" + hashlib.md5(
options['seed'].encode()
).hexdigest() + "?s=256&d=retro"
shutil.copy(self.download(gravatar_url),
options['location']
)
shutil.copy(self.download(gravatar_url),
location
)
except Exception:
# Because installation should work offline, if we can't download a favicon,
# just ignore this step.
self.logger.exception("Error while downloading favicon, using empty one")
open(
options['location']
, 'w').close()
open(
location
, 'w').close()
finally:
self.buildout['buildout']['offline'] = buildout_offline
...
...
Jérome Perrin
@jerome
mentioned in commit
faaebbf3
·
Jun 10, 2022
mentioned in commit
faaebbf3
mentioned in commit faaebbf3e852cae71d88be09a3e68edd0f5b2284
Toggle commit list
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