Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
FDO Manager E2E Tests
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
fdo
FDO Manager E2E Tests
Commits
128a1ad0
Verified
Commit
128a1ad0
authored
5 months ago
by
Timm Fitschen
Browse files
Options
Downloads
Patches
Plain Diff
FIX: fix installer
parent
45c38dd5
No related branches found
Branches containing commit
No related tags found
1 merge request
!9
FIX: fix installer
Pipeline
#55839
passed
5 months ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
install_python_client.sh
+3
-4
3 additions, 4 deletions
install_python_client.sh
with
3 additions
and
4 deletions
install_python_client.sh
+
3
−
4
View file @
128a1ad0
...
@@ -5,17 +5,16 @@ dir_name="temp_dir"
...
@@ -5,17 +5,16 @@ dir_name="temp_dir"
default_api_url
=
"https://gitlab.indiscale.com/fdo/fdo-manager-service/-/raw/main/api/src/main/resources/api.yaml"
default_api_url
=
"https://gitlab.indiscale.com/fdo/fdo-manager-service/-/raw/main/api/src/main/resources/api.yaml"
# Check openapi-python-client and install if necessary
# Check openapi-python-client and install if necessary
if
[
"
$(
which openapi-python-client
)
"
==
""
]
if
[
-z
"
$(
which openapi-python-client
)
"
]
;
then
then
echo
'openapi-python-client not found, installing'
echo
'openapi-python-client not found, installing'
pip
install
openapi-python-client
pip
install
openapi-python-client
fi
fi
# Create temporary folder
# Create temporary folder
if
[
[
-d
"
$dir_name
"
]
]
if
[
-d
"
$dir_name
"
]
then
then
echo
'Temporary folder already exists, aborting.'
echo
'Temporary folder already exists, aborting.'
exit
exit
0
else
else
echo
'creating temporary folder'
echo
'creating temporary folder'
mkdir
$dir_name
mkdir
$dir_name
...
...
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