aboutsummaryrefslogtreecommitdiff
path: root/src/anaconda/install.sh
diff options
context:
space:
mode:
authorSamruddhi Khandale <skhandale@microsoft.com>2022-08-23 23:13:33 +0300
committerGitHub <noreply@github.com>2022-08-23 23:13:33 +0300
commit84f4996643b84c6f3dcd5c3edc72ae176dceaf65 (patch)
tree74b7eddfc24ae22409baf5f3e4be28ce52d5881a /src/anaconda/install.sh
parent0cafeee86296b9f19e6425055e0c4037eff41985 (diff)
Fix bug - Python: Error installing os-provided python (#112)
* python: fix bug * bump versions
Diffstat (limited to 'src/anaconda/install.sh')
-rwxr-xr-xsrc/anaconda/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/anaconda/install.sh b/src/anaconda/install.sh
index 9e7042a..1802ce3 100755
--- a/src/anaconda/install.sh
+++ b/src/anaconda/install.sh
@@ -83,7 +83,7 @@ if ! conda --version &> /dev/null ; then
chown -R "${USERNAME}:conda" "${CONDA_DIR}"
chmod -R g+r+w "${CONDA_DIR}"
- find "${CONDA_DIR}" -type d | xargs -n 1 chmod g+s
+ find "${CONDA_DIR}" -type d -print0 | xargs -n 1 -0 chmod g+s
echo "Installing Anaconda..."
CONDA_VERSION=$VERSION