Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
devcontainer-features
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eazydevelop-devcontainer-temp
devcontainer-features
Commits
fac5e5a4
Commit
fac5e5a4
authored
Jun 13, 2022
by
Samruddhi Khandale
Committed by
GitHub
Jun 13, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python: fix condition when version=none
parent
78ef2cce
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
install.sh
src/python/install.sh
+1
-2
No files found.
src/python/install.sh
View file @
fac5e5a4
...
@@ -276,7 +276,6 @@ install_from_source() {
...
@@ -276,7 +276,6 @@ install_from_source() {
make
install
make
install
cd
/tmp
cd
/tmp
rm
-rf
/tmp/python-src
${
GNUPGHOME
}
/tmp/vscdc-settings.env
rm
-rf
/tmp/python-src
${
GNUPGHOME
}
/tmp/vscdc-settings.env
chown
-R
${
USERNAME
}
"
${
INSTALL_PATH
}
"
ln
-s
"
${
INSTALL_PATH
}
/bin/python3"
"
${
INSTALL_PATH
}
/bin/python"
ln
-s
"
${
INSTALL_PATH
}
/bin/python3"
"
${
INSTALL_PATH
}
/bin/python"
ln
-s
"
${
INSTALL_PATH
}
/bin/pip3"
"
${
INSTALL_PATH
}
/bin/pip"
ln
-s
"
${
INSTALL_PATH
}
/bin/pip3"
"
${
INSTALL_PATH
}
/bin/pip"
...
@@ -369,7 +368,7 @@ if [ "${PYTHON_VERSION}" != "none" ]; then
...
@@ -369,7 +368,7 @@ if [ "${PYTHON_VERSION}" != "none" ]; then
fi
fi
# Install Python tools if needed
# Install Python tools if needed
if
[
"
${
INSTALL_PYTHON_TOOLS
}
"
=
"true"
]
;
then
if
[
"
${
INSTALL_PYTHON_TOOLS
}
"
=
"true"
]
&&
[
"
${
PYTHON_VERSION
}
"
!=
"none"
]
;
then
echo
'Installing Python tools...'
echo
'Installing Python tools...'
export
PIPX_BIN_DIR
=
"
${
PIPX_HOME
}
/bin"
export
PIPX_BIN_DIR
=
"
${
PIPX_HOME
}
/bin"
export
PATH
=
"
${
CURRENT_PATH
}
/bin:
${
PIPX_BIN_DIR
}
:
${
PATH
}
"
export
PATH
=
"
${
CURRENT_PATH
}
/bin:
${
PIPX_BIN_DIR
}
:
${
PATH
}
"
...
...
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