mirror of
https://github.com/taigrr/wtf
synced 2026-03-29 07:35:16 -07:00
20191215 code improvements (#790)
* Upgrade godo to latest * Fix a bunch of issues found by * Running staticcheck on a codebase for the first time is a sobering experience * go mod tidy * More static improvements Signed-off-by: Chris Cummer <chriscummer@me.com>
This commit is contained in:
@@ -58,7 +58,7 @@ func CreateFile(fileName string) (string, error) {
|
||||
// Initialize takes care of settings up the initial state of WTF configuration
|
||||
// It ensures necessary directories and files exist
|
||||
func Initialize(hasCustom bool) {
|
||||
if hasCustom == false {
|
||||
if !hasCustom {
|
||||
migrateOldConfig()
|
||||
}
|
||||
|
||||
@@ -67,7 +67,7 @@ func Initialize(hasCustom bool) {
|
||||
createXdgConfigDir()
|
||||
createWtfConfigDir()
|
||||
|
||||
if hasCustom == false {
|
||||
if !hasCustom {
|
||||
createWtfConfigFile()
|
||||
chmodConfigFile()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user