Fixing bug

This commit is contained in:
Abir Majumdar 2018-08-24 07:25:06 -07:00 committed by GitHub
parent a93e0b4308
commit 01084e2f7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,11 +37,12 @@ class ModuleInfo
end
# instantiate ModuleInfo class with arguments passed in to this script at runtime
def get_module_info_from_args(mod_name, mod_git_ref, mod_workspace)
def get_module_info_from_args(mod_name, mod_git_ref, mod_workspace, mod_control_repo)
module_info = ModuleInfo.new
module_info.module_name = mod_name
module_info.module_git_ref = mod_git_ref
module_info.module_workspace = mod_workspace
module_info.control_repo = mod_control_repo
puts "#{module_info.module_git_ref}"
return module_info
end