Coder Social home page Coder Social logo

Comments (4)

ALIENQuake avatar ALIENQuake commented on August 23, 2024 1

This will be fixed in the next version, no ETA.

from projectinfinity.

elisimpson avatar elisimpson commented on August 23, 2024

@ALIENQuake Hoping this can get worked on. Here's some additional info from the ProjectInfinity-Tools-Download log:

Required Git 2.30.2 is missing
Any local Git version is missing
Global Git is missing

Git is definitely installed but is not being detected by PI. Is perhaps PI looking for the exact version 2.30.2? I'm currently running 2.43.0

If not, there's something wrong with PI's Git detection code as according to the log it's looking for a "Global Git" install and not finding it.

from projectinfinity.

ALIENQuake avatar ALIENQuake commented on August 23, 2024

@elisimpson Hey,

  1. Can you successfully launch git simply by typing git --version in the console?
  2. What's the outcome of this code executed in Windows PowerShell:
function Get-GitGlobalPath {
    # check if git can be launched as global tool
    $ErrorActionPreference = 'SilentlyContinue'
    $p = Start-Process "git" -ArgumentList '--version' -WindowStyle Hidden -Wait -PassThru 
    $ErrorActionPreference = 'Continue'
    if ($null -ne $p -and $p.ExitCode -eq 0) {
        [version]$global:gitGlobalVersion = (Get-Item ($p.StartInfo.FileName) -Force).VersionInfo.FileVersionRaw
        $gitPath = 'git'
    }
    else {
        $gitPath = $null
    }
    $gitPath
}

Get-GitGlobalPath

from projectinfinity.

elisimpson avatar elisimpson commented on August 23, 2024
  1. yes ... "git version 2.43.0.windows.1"
  2. script outputs "git"

Despite git being available PI always thinks it needs to download a local copy for the Tools dir

from projectinfinity.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.