forked from TrueCloudLab/rclone
config: Fix save of temp file under Windows - fixes #1458
This commit is contained in:
parent
7693cecd17
commit
b047402294
1 changed files with 1 additions and 2 deletions
|
@ -16,7 +16,6 @@ import (
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"os/user"
|
"os/user"
|
||||||
"path"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"regexp"
|
"regexp"
|
||||||
"sort"
|
"sort"
|
||||||
|
@ -590,7 +589,7 @@ func changeConfigPassword() {
|
||||||
// SaveConfig saves configuration file.
|
// SaveConfig saves configuration file.
|
||||||
// if configKey has been set, the file will be encrypted.
|
// if configKey has been set, the file will be encrypted.
|
||||||
func SaveConfig() {
|
func SaveConfig() {
|
||||||
dir, name := path.Split(ConfigPath)
|
dir, name := filepath.Split(ConfigPath)
|
||||||
f, err := ioutil.TempFile(dir, name)
|
f, err := ioutil.TempFile(dir, name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Failed to create temp file for new config: %v", err)
|
log.Fatalf("Failed to create temp file for new config: %v", err)
|
||||||
|
|
Loading…
Reference in a new issue