This repository was archived by the owner on Nov 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Fix deprecated pygmy commands #69
Copy link
Copy link
Open
Labels
Description
Problem / Motivation
Helper commands like ahoy fix-bay-token are currently incompatible with pygmy-go.
Amazee.io have deprecated their pygmy tool written in python. They now direct customers to use fubarhouse/pygmy-go. The new pygmy-go commands list does not include pgymy start or pygmy stop. They are replace by pygmy up and pygmy down.
Default installation using Homebrew will create a command named pygmy-go. This can by symlinked or renamed as pygmy but for now, we probably need to assume the command is pygmy-go OOTB.
Steps to reproduce
-
Clone an SDP project like
content-vic -
Install required dependency
pygmy-goby following the stepsbrew tap fubarhouse/pygmy-go brew install pygmy-go -
Run
ahoy fix-bay-token
Expected result
My Bay token is fixed.
Actual result
Errors are generated like
Error: unknown command "stop" for "pygmy-go"
Run 'pygmy-go --help' for usage.
unknown command "stop" for "pygmy-go"
or
-bash: pygmy: No such file or directory
Suggested fix
- Update any documentation that links to https://github.com/amazeeio/pygmy and replace with https://github.com/fubarhouse/pygmy-go
- Update all commands referencing
pygmyto usepygmy-gocommands instead.
Reactions are currently unavailable