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
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ class DriverManagerFragment : Fragment() {
|
||||||
false
|
false
|
||||||
) {
|
) {
|
||||||
val driverPath =
|
val driverPath =
|
||||||
"${GpuDriverHelper.driverStoragePath}/${FileUtil.getFilename(result)}"
|
"${GpuDriverHelper.driverStoragePath}${FileUtil.getFilename(result)}"
|
||||||
val driverFile = File(driverPath)
|
val driverFile = File(driverPath)
|
||||||
|
|
||||||
// Ignore file exceptions when a user selects an invalid zip
|
// Ignore file exceptions when a user selects an invalid zip
|
||||||
|
|
Loading…
Reference in a new issue