aboutsummaryrefslogtreecommitdiff
path: root/share/hoarder/pyenv/unix/install
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2022-07-07 13:48:08 -0300
committerSilvio Rhatto <rhatto@riseup.net>2022-07-07 13:48:08 -0300
commit22bd3a532dbb21085fa35eecf7a1edd92bd22fc4 (patch)
tree4ebaae89c41450fbb457b44e465d47f39a1c2333 /share/hoarder/pyenv/unix/install
parentea3015dea04a3cdebd411313f84d802474456bc1 (diff)
downloadtrashman-22bd3a532dbb21085fa35eecf7a1edd92bd22fc4.tar.gz
trashman-22bd3a532dbb21085fa35eecf7a1edd92bd22fc4.tar.bz2
Fix: hoarder: pyenv: install shell initialization scripts with profile.d scheme is used
Diffstat (limited to 'share/hoarder/pyenv/unix/install')
-rwxr-xr-xshare/hoarder/pyenv/unix/install29
1 files changed, 0 insertions, 29 deletions
diff --git a/share/hoarder/pyenv/unix/install b/share/hoarder/pyenv/unix/install
deleted file mode 100755
index eedc5da..0000000
--- a/share/hoarder/pyenv/unix/install
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env sh
-#
-# Install pyenv
-#
-
-# Parameters
-SHARE="$1"
-LIB="$2"
-
-# Include basic functions
-. $LIB/trashman/functions || exit 1
-. $LIB/trashman/debian || exit 1
-
-# Requirements
-trashman_apt_install git
-
-# Setup pyenv from installer script
-#mkdir -p $HOME/.local/bin $HOME/.local/share
-#cd $HOME/.local/bin
-#wget https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer
-#chmod +x pyenv-installer
-#./pyenv-installer
-
-# Setup pyenv by cloning it's repository
-if [ ! -d "$HOME/.pyenv" ]; then
- git clone https://github.com/pyenv/pyenv.git $HOME/.pyenv
-else
- ( cd $HOME/.pyenv && git pull )
-fi