Skip to content

Commit 55a45b2

Browse files
committed
fix(sync]: formatting issues
1 parent f603072 commit 55a45b2

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

‎cmd/config/sync/sync.go‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ func syncAnvilSettings(dryRun bool) error {
9090
currentSettingsPath,
9191
fmt.Sprintf("Sync local %s? Old copy will be archived.", constants.ANVIL_CONFIG_FILE),
9292
"Syncing anvil settings",
93-
"Anvil settings synced successfully",
94-
"Anvil settings synced successfully",
93+
"[Anvil] settings synced successfully",
94+
"Sync done!",
9595
)
9696
}
9797

@@ -148,8 +148,8 @@ func syncAppConfig(appName string, dryRun bool) error {
148148
localConfigPath,
149149
fmt.Sprintf("Sync %s configs? Old copy will be archived.", appName),
150150
fmt.Sprintf("Syncing %s configuration", appName),
151-
fmt.Sprintf("%s configuration synced successfully", strings.Title(appName)),
152-
fmt.Sprintf("%s configuration synced successfully", strings.Title(appName)),
151+
fmt.Sprintf("[%s] configuration synced successfully", strings.Title(appName)),
152+
"Sync done!",
153153
)
154154
}
155155

@@ -201,8 +201,8 @@ func performSync(archivePrefix, sourcePath, destPath, confirmMsg, spinnerMsg, sp
201201
spinner.Success(spinnerSuccess)
202202

203203
output.PrintSuccess(successMsg)
204-
output.PrintInfo("📦 Old configs archived to: %s", archivePath)
205-
output.PrintInfo("💡 Manual recovery possible from archive directory (no auto-recover yet)")
204+
output.PrintInfo("Old configs archived to: %s", archivePath)
205+
output.PrintInfo("Manual recovery possible from archive directory (no auto-recover yet)")
206206

207207
return nil
208208
}

0 commit comments

Comments
 (0)