mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
config: Fix save of temp file under Windows - fixes #1458
This commit is contained in:
parent
7693cecd17
commit
b047402294
@ -16,7 +16,6 @@ import (
|
||||
"log"
|
||||
"os"
|
||||
"os/user"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"regexp"
|
||||
"sort"
|
||||
@ -590,7 +589,7 @@ func changeConfigPassword() {
|
||||
// SaveConfig saves configuration file.
|
||||
// if configKey has been set, the file will be encrypted.
|
||||
func SaveConfig() {
|
||||
dir, name := path.Split(ConfigPath)
|
||||
dir, name := filepath.Split(ConfigPath)
|
||||
f, err := ioutil.TempFile(dir, name)
|
||||
if err != nil {
|
||||
log.Fatalf("Failed to create temp file for new config: %v", err)
|
||||
|
Loading…
Reference in New Issue
Block a user