Description:
I found a discrepancy between the Chinese and English documentation regarding how to activate the acme.sh alias after installation:
- Documentation Inconsistency: The Chinese README suggests running
source ~/.bashrc to activate the alias. However, the English README correctly states "Close and reopen your terminal."
- Technical Root Cause: The installer writes the alias/environment configuration to
~/.profile by default, not ~/.bashrc. Therefore, source ~/.bashrc does not load the changes.
- Better Alternative: For SSH users, running
source ~/.profile is a much more convenient option than closing and reopening the terminal.
- Shell Compatibility: The current installation logic fails for Fish Shell users. The syntax in
.profile is incompatible with Fish, and Fish does not source .profile by default.
Request:
- Please synchronize the Chinese README with the English version.
- Update the instructions to recommend
source ~/.profile for immediate activation.
- Consider adding a compatibility note or support for Fish Shell users.
Environment:
Description:
I found a discrepancy between the Chinese and English documentation regarding how to activate the
acme.shalias after installation:source ~/.bashrcto activate the alias. However, the English README correctly states "Close and reopen your terminal."~/.profileby default, not~/.bashrc. Therefore,source ~/.bashrcdoes not load the changes.source ~/.profileis a much more convenient option than closing and reopening the terminal..profileis incompatible with Fish, and Fish does not source.profileby default.Request:
source ~/.profilefor immediate activation.Environment: