From 17c6e20cc73c5cd0634ec7690066725a047e241c Mon Sep 17 00:00:00 2001 From: "Simon A. F. Lund" Date: Wed, 20 Nov 2024 12:18:37 +0100 Subject: [PATCH] fix(pkgs): remove 'ensurepath' Signed-off-by: Simon A. F. Lund --- auxi/pkgs/fedora.sh | 3 --- auxi/pkgs/python.sh | 13 ------------- auxi/pkgs/ubuntu.sh | 3 --- 3 files changed, 19 deletions(-) delete mode 100755 auxi/pkgs/python.sh diff --git a/auxi/pkgs/fedora.sh b/auxi/pkgs/fedora.sh index ab66ddc..3b329de 100755 --- a/auxi/pkgs/fedora.sh +++ b/auxi/pkgs/fedora.sh @@ -18,6 +18,3 @@ dnf install -y \ clang-tools-extra \ doxygen \ graphviz - -# This **should** ensure that yace cli is invokable -pipx ensurepath diff --git a/auxi/pkgs/python.sh b/auxi/pkgs/python.sh deleted file mode 100755 index 42eb914..0000000 --- a/auxi/pkgs/python.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash - -# Setup pipx -python3 -m site --user-base -python3 -m pip install --upgrade pip -python3 -m pip install pipx -python3 -m pipx ensurepath - -# Install Python-based tools from PyPI via pipx -pipx install black -pipx install coverage -pipx install isort -pipx install kmdo diff --git a/auxi/pkgs/ubuntu.sh b/auxi/pkgs/ubuntu.sh index f37c412..89683bc 100755 --- a/auxi/pkgs/ubuntu.sh +++ b/auxi/pkgs/ubuntu.sh @@ -35,6 +35,3 @@ apt-get -qy install \ clang-format \ doxygen \ graphviz - -# This **should** ensure that yace cli is invokable -pipx ensurepath