| Index: client/cipd/local/deployer.go
|
| diff --git a/client/cipd/local/deployer.go b/client/cipd/local/deployer.go
|
| index 0fa1b0982c17e214f53347a761e6e39e8676febf..02b202df9a69d29567201816853695d3e41e8e41 100644
|
| --- a/client/cipd/local/deployer.go
|
| +++ b/client/cipd/local/deployer.go
|
| @@ -362,7 +362,7 @@ func (d *deployerImpl) setCurrentInstanceID(packageDir string, instanceID string
|
| return err
|
| }
|
| if runtime.GOOS == "windows" {
|
| - return d.fs.EnsureFile(filepath.Join(packageDir, currentTxt), strings.NewReader(instanceID))
|
| + return EnsureFile(d.fs, filepath.Join(packageDir, currentTxt), strings.NewReader(instanceID))
|
| }
|
| return d.fs.EnsureSymlink(filepath.Join(packageDir, currentSymlink), instanceID)
|
| }
|
|
|