Typo in upgrade to V2 guide. #34
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
In the upgrade guide, there's a
sed
command that looks like this:sed -i -e "s|<install_DIRECTORY>|/opt/yams|g" yams
However, in the yams binary, the string appears as:
<install_directory>
When I ran
yams update
, I encountered the following error:/usr/local/bin/yams: line 97: <install_directory>/.env: No such file or directory
the fix was adjusting the command to:
sed -i -e "s|<install_directory>|/opt/yams|g" yams
changed the description