Skip to content

Commit

Permalink
fix(driver_manager): interacting with private repo
Browse files Browse the repository at this point in the history
  • Loading branch information
naqvis committed Mar 19, 2024
1 parent c3c4dff commit 1c3cd1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/placeos-core/driver_manager.cr
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module PlaceOS::Core
def compile(file_name : String, url : String, commit : String, branch : String, force : Bool, username : String? = nil, password : String? = nil) : Result
Log.info { {message: "Requesting build service to compile driver", driver_file: file_name, branch: branch, repository: url} }
begin
resp = BuildApi.compile(file_name, url, commit, branch, force)
resp = BuildApi.compile(file_name, url, commit, branch, force, username, password)
unless resp.success?
Log.error { {message: resp.body, status_code: resp.status_code, driver: file_name, commit: commit, branch: branch, force: force} }
return Result.new(output: resp.body, name: file_name)
Expand Down

0 comments on commit 1c3cd1e

Please sign in to comment.