|
@@ -6,14 +6,6 @@ import (
|
|
"runtime"
|
|
"runtime"
|
|
)
|
|
)
|
|
|
|
|
|
-// Key returns the env var name for the user's home dir based on
|
|
|
|
-// the platform being run on.
|
|
|
|
-//
|
|
|
|
-// Deprecated: this function is no longer used, and will be removed in the next release.
|
|
|
|
-func Key() string {
|
|
|
|
- return envKeyName
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
// Get returns the home directory of the current user with the help of
|
|
// Get returns the home directory of the current user with the help of
|
|
// environment variables depending on the target operating system.
|
|
// environment variables depending on the target operating system.
|
|
// Returned path should be used with "path/filepath" to form new paths.
|
|
// Returned path should be used with "path/filepath" to form new paths.
|
|
@@ -34,11 +26,3 @@ func Get() string {
|
|
}
|
|
}
|
|
return home
|
|
return home
|
|
}
|
|
}
|
|
-
|
|
|
|
-// GetShortcutString returns the string that is shortcut to user's home directory
|
|
|
|
-// in the native shell of the platform running on.
|
|
|
|
-//
|
|
|
|
-// Deprecated: this function is no longer used, and will be removed in the next release.
|
|
|
|
-func GetShortcutString() string {
|
|
|
|
- return homeShortCut
|
|
|
|
-}
|
|
|