Skip to content

Commit 8054098

Browse files
refactor: remove emoji icons from terminal output messages
1 parent de94773 commit 8054098

4 files changed

Lines changed: 4 additions & 18 deletions

File tree

β€Žcmd/scope.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ func runScopeShow(cmd *cobra.Command, args []string) error {
327327
}
328328

329329
if program.TestingGuidelines != "" {
330-
fmt.Println("πŸ“– TESTING GUIDELINES:")
330+
fmt.Println(" TESTING GUIDELINES:")
331331
fmt.Println(wrapText(program.TestingGuidelines, 80))
332332
}
333333

β€Žcmd/workers.goβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ and install all dependencies. This only needs to be run once.`,
9797
}
9898

9999
// Install dependencies
100-
fmt.Println("πŸ“š Installing dependencies...")
100+
fmt.Println(" Installing dependencies...")
101101
pipBin := filepath.Join(venvDir, "bin", "pip")
102102

103103
// Install FastAPI and dependencies
@@ -239,7 +239,7 @@ var workersStatusCmd = &cobra.Command{
239239

240240
fmt.Println(" Worker service is healthy")
241241
fmt.Println("🌐 URL: http://localhost:5000")
242-
fmt.Println("πŸ“š API docs: http://localhost:5000/docs")
242+
fmt.Println(" API docs: http://localhost:5000/docs")
243243

244244
return nil
245245
},

β€Žinstall.shβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ main() {
589589
log INFO " Or env vars: export SHELLS_DATABASE_DSN=\"postgres://...\""
590590
log INFO " Database (auto): postgres://shells:shells_password@localhost:5432/shells"
591591
echo
592-
log INFO "πŸ“– Get Help:"
592+
log INFO " Get Help:"
593593
log INFO " shells --help # All commands and flags"
594594
log INFO " shells serve --help # Server-specific options"
595595
log INFO " shells self-update # Update to latest version"

β€Žworkers/service/start.shβ€Ž

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
Β (0)