Skip to content

Commit 26fc066

Browse files
author
Dirk Petersen (aider)
committed
fix: Wait for froster command after pipx install
1 parent fbe4fcd commit 26fc066

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

install.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,13 @@ install_froster() {
349349
echo "...Froster installed"
350350
fi
351351

352+
# Wait until 'froster' command is available in PATH
353+
echo " Verifying froster command availability..."
354+
while ! command -v froster >/dev/null 2>&1; do
355+
sleep 1
356+
done
357+
echo " ...froster command verified."
358+
352359
# Keep the config.ini file (if any)
353360
if [[ -f ${froster_config_backup_dir}/config.ini ]]; then
354361
# Create the froster directory if it does not exist

0 commit comments

Comments
 (0)