fix: improve git url parsing and deployment
- Improve the parsing of Git URLs to correctly handle paths and branches. - Fix an issue where the `griddriver` installer was not correctly - installed. - Fix a bug in the `IPAddress` `ping` function. - Update the `GitLocation` struct to correctly handle branches and - tags. - Fix a bug in the `GitRepo` `checkout` function. - Improve the `gitlocation_from_url` function to handle various Git - URL formats. - Update the `livekit` installer to use the correct source command. - Update the `golang` installer to use the correct `go version` - command. - Update the `griddriver` installer to use the correct version - command. Co-authored-by: supermario <mariobassem12@gmail.com>
This commit is contained in:
@@ -10,7 +10,7 @@ import os
|
||||
|
||||
// checks if a certain version or above is installed
|
||||
fn installed_() !bool {
|
||||
res := os.execute('${osal.profile_path_source_and()!} griddriver --version')
|
||||
res := os.execute('/bin/bash -c "griddriver --version"')
|
||||
if res.exit_code != 0 {
|
||||
return false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user