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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kwabena Antwi-Boasiako
slapos
Commits
f71c96ad
Commit
f71c96ad
authored
Aug 29, 2018
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
component/firefox: use .format string subsitutions
so that we don't have to escape % as %%
parent
654ac2e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
component/firefox/buildout.cfg
component/firefox/buildout.cfg
+4
-4
No files found.
component/firefox/buildout.cfg
View file @
f71c96ad
...
@@ -37,11 +37,11 @@ script =
...
@@ -37,11 +37,11 @@ script =
part = self.buildout[os.path.basename(firefox)]
part = self.buildout[os.path.basename(firefox)]
with open(%(location)r, 'w') as f:
with open(%(location)r, 'w') as f:
f.write("""#!/bin/sh -e
f.write("""#!/bin/sh -e
cd
%%s
cd
{}
export LD_LIBRARY_PATH=$PWD:
%%s
export LD_LIBRARY_PATH=$PWD:
{}
export PATH=
%%s
:$PATH
export PATH=
{}
:$PATH
exec ./firefox "$@" 2>/dev/null
exec ./firefox "$@" 2>/dev/null
"""
%%
(
"""
.format
(
firefox,
firefox,
':'.join(part['library'].split()),
':'.join(part['library'].split()),
':'.join(part['path'].split()),
':'.join(part['path'].split()),
...
...
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