android: Fix added driver path
While this didn't break anything, the extra separator was unnecessary
This commit is contained in:
parent
dac8c4ce4d
commit
d3ba6b334b
|
@ -179,7 +179,7 @@ class DriverManagerFragment : Fragment() {
|
|||
false
|
||||
) {
|
||||
val driverPath =
|
||||
"${GpuDriverHelper.driverStoragePath}/${FileUtil.getFilename(result)}"
|
||||
"${GpuDriverHelper.driverStoragePath}${FileUtil.getFilename(result)}"
|
||||
val driverFile = File(driverPath)
|
||||
|
||||
// Ignore file exceptions when a user selects an invalid zip
|
||||
|
|
Reference in New Issue