From 4fc693a17ea48e89c160c6df076ffb2b172bb9ce Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Wed, 5 Jun 2024 11:32:25 +0200 Subject: [PATCH] useless --- cmd/cd-clone-python.sh | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100755 cmd/cd-clone-python.sh diff --git a/cmd/cd-clone-python.sh b/cmd/cd-clone-python.sh deleted file mode 100755 index 52eb00e..0000000 --- a/cmd/cd-clone-python.sh +++ /dev/null @@ -1,15 +0,0 @@ -[ "${1}" ] && REPOSITORY_FULL="${1}" || exit -REPOSITORY_NAME="$(basename ${REPOSITORY_FULL})" - -REPOSITORY_TEMP="$(mktemp --directory)" - -git clone \ --- \ -"${GITHUB_SERVER_URL}/${REPOSITORY_FULL}" \ -"${REPOSITORY_TEMP}" - -mv "${REPOSITORY_TEMP}/${REPOSITORY_NAME}" \ -/usr/local/lib/python3.*/dist-packages/ - -rm --force --recursive \ -"${REPOSITORY_TEMP}"