Skip to content

Commit

Permalink
froster v0.14.15
Browse files Browse the repository at this point in the history
Unverbose install.sh and update readme for RHEL
  • Loading branch information
Victor Machado committed Jun 26, 2024
1 parent ba2556f commit 0e51aa8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ sudo apt install -y curl python3 python3-pip python3-venv python3-dev gcc lib32g
### On Fedora / CentOS / RHEL

```
sudo dnf update
sudo dnf update -y
sudo dnf groupinstall -y "Development Tools"
sudo dnf install -y curl python3 python3-pip python3-venv python3-devel unzip fuse3
sudo dnf install -y curl python3 python3-pip python3-devel unzip fuse3
```

### On HPC machine
Expand Down
15 changes: 11 additions & 4 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -294,18 +294,25 @@ install_pipx() {
if [[ -z $(command -v pipx) ]]; then

# Install or upgrade pipx
python3 -m pip install --user --upgrade pipx
python3 -m pip install --user --upgrade pipx >/dev/null 2>&1

# Ensure path for pipx
pipx_path=$(get_dir "pipx")
${pipx_path}/pipx ensurepath
${pipx_path}/pipx ensurepath >/dev/null 2>&1

# Ensure ~/.local/bin is in the PATH for this session
export PATH="$HOME/.local/bin:$PATH"

echo "...pipx installed"
else
echo "...pipx already installed"
echo
echo "Upgrading pipx..."

pipx upgrade pipx &
spinner $!

echo "...pipx upgraded"
fi
}

Expand All @@ -316,11 +323,11 @@ install_froster() {

if [ "$LOCAL_INSTALL" = "true" ]; then
echo " Installing from the current directory"
pipx install . &
pipx install . >/dev/null 2>&1 &
spinner $!
else
echo " Installing from PyPi package repository"
pipx install froster &
pipx install froster >/dev/null 2>&1 &
spinner $!
fi

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "froster"
version = "0.14.14"
version = "0.14.15"
description = "Froster is a tool for easy data transfer between local file systems and AWS S3 storage."
authors = ["Victor Machado <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 0e51aa8

Please sign in to comment.