Skip to content

Commit cbaad14

Browse files
committedAug 10, 2024·
Bugfix: Linux installer - pin git to < 2.45
1 parent 6fe300e commit cbaad14

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎.install/linux/faceswap_setup_x64.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,9 @@ activate_env() {
380380
install_git() {
381381
# Install git inside conda environment
382382
info "Installing Git..."
383-
yellow ; conda install git -q -y
383+
# TODO On linux version 2.45.2 makes the font fixed TK pull in Python from
384+
# graalpy, which breaks pretty much everything
385+
yellow ; conda install "git<2.45" -q -y
384386
}
385387

386388
delete_faceswap() {

0 commit comments

Comments
 (0)