Skip to content

Commit

Permalink
fixed commented removing of archives
Browse files Browse the repository at this point in the history
  • Loading branch information
Barakudum committed Jan 30, 2024
1 parent d7e8e34 commit 3bb8894
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,19 @@ fi

info "Extracting jarklin..."
tar -xf "$JARKLIN_ARCHIVE" -C "."
#rm "$JARKLIN_ARCHIVE"

info "Installing web-ui..."
tar -xf "$WEB_UI_ARCHIVE" -C "$WEB_UI_DIR"
#rm "$WEB_UI_ARCHIVE"

info "Installing dependencies..."
rm -rf "jarklin/_deps/"
mkdir -p "jarklin/_deps/"
python3 -m pip install -r "jarklin/requirements.txt" -t "jarklin/_deps/" --disable-pip-version-check

info "Cleanup..."
rm "$JARKLIN_ARCHIVE"
rm "$WEB_UI_ARCHIVE"

if ! command -v ffmpeg &>/dev/null; then
error "ffmpeg not found. Please install"
fi
Expand Down

0 comments on commit 3bb8894

Please sign in to comment.