Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
OGS Container Maker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
ogs
OGS Container Maker
Compare revisions
711460bb9573fb89527f98679af904b67d62e9b6 to a7e952f1bf9b9950c1808c098a91bb65d46db2e4
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ogs/container-maker
Select target project
No results found
a7e952f1bf9b9950c1808c098a91bb65d46db2e4
Select Git revision
Swap
Target
ogs/container-maker
Select target project
ogs/container-maker
kristofkessler/container-maker
2 results
711460bb9573fb89527f98679af904b67d62e9b6
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Make poetry executable for all.
· a7e952f1
Lars Bilke
authored
4 years ago
a7e952f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ogscm/building_blocks/ogs_base.py
+7
-4
7 additions, 4 deletions
ogscm/building_blocks/ogs_base.py
with
7 additions
and
4 deletions
ogscm/building_blocks/ogs_base.py
View file @
a7e952f1
...
@@ -86,10 +86,13 @@ class ogs_base(bb_base):
...
@@ -86,10 +86,13 @@ class ogs_base(bb_base):
self
.
__ospackages
.
append
(
"
python3-venv
"
)
self
.
__ospackages
.
append
(
"
python3-venv
"
)
else
:
else
:
self
.
__ospackages
.
append
(
"
python3-virtualenv
"
)
self
.
__ospackages
.
append
(
"
python3-virtualenv
"
)
self
.
__commands
.
append
(
self
.
__commands
.
extend
(
"""
curl -sSL
\
[
https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py
\
"""
curl -sSL
\
| POETRY_HOME=/usr/local/poetry POETRY_VERSION=1.1.2 python3
"""
https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py
\
| POETRY_HOME=/usr/local/poetry POETRY_VERSION=1.1.2 python3
"""
,
"
chmod +x /usr/local/poetry/bin/poetry
"
,
]
)
)
def
runtime
(
self
,
_from
=
"
0
"
):
def
runtime
(
self
,
_from
=
"
0
"
):
...
...
This diff is collapsed.
Click to expand it.