Disable sshyp-sync-shim on Windows

This commit is contained in:
2024-03-08 10:43:00 -05:00
parent f35d1b3741
commit f83bdb9bdb
4 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ func EntryReader(decryptedEntry []string, hidePassword bool, sync bool) {
fmt.Println()
}
if sync {
if sync && !offline.Windows {
SshypSync() // TODO Remove after native sync is implemented
}
+1
View File
@@ -9,3 +9,4 @@ var ConfigPath = ConfigDir + "/libmutton.ini"
// PathSeparator defines the character used to separate directories in a path (platform-specific)
const PathSeparator = "/"
const Windows = false // TODO temporary, remove after native sync is implemented
+1
View File
@@ -9,3 +9,4 @@ var ConfigPath = ConfigDir + "\\libmutton.ini"
// PathSeparator defines the character used to separate directories in a path (platform-specific)
const PathSeparator = "\\"
const Windows = true // TODO temporary, remove after native sync is implemented