Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.package
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
12
Merge Requests
12
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
slapos.package
Commits
afecd8e1
Commit
afecd8e1
authored
Jan 31, 2025
by
Thomas Gambier
🚴🏼
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
obs/re6st: don't use systems eggs (e.g. if broken buildout is in the path)
parent
f8ad9854
Pipeline
#39450
failed with stage
in 0 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
obs/re6st/make.py
obs/re6st/make.py
+2
-2
No files found.
obs/re6st/make.py
View file @
afecd8e1
...
...
@@ -116,11 +116,11 @@ def bootstrap(task):
'buildout:extra-paths='
,
'bootstrap'
))
# just fix shebang
check_call
((
sys
.
executable
,
'bin/buildout'
,
'bootstrap'
))
check_call
((
sys
.
executable
,
'
-S'
,
'
bin/buildout'
,
'bootstrap'
))
@
task
(
bootstrap
,
BUILD
+
"/.installed.cfg"
)
def
buildout
(
task
):
check_call
((
"bin/buildout"
,),
cwd
=
BUILD
)
check_call
((
sys
.
executable
,
'-S'
,
'bin/buildout'
,),
cwd
=
BUILD
)
# Touch target in case that buildout had nothing to do.
os
.
utime
(
task
.
output
,
None
)
...
...
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