Typo and Error in README
Typo
Description
Under the Git Repository section, inside the first code block, there is the following line:
cp -r package-stategy/ dev
There is an r missing in strategy. The line should be changed to :
cp -r package-strategy/ dev
Incorrect sed
Description
Additionally, it looks like there's an error in the final section of that same codeblock:
cp -r umbrella-strategy/ prod
# update path - switch to gsed on MacOS
sed -i 's/package-strategy/prod/g' prod/bigbang.yaml
In this example, we're copying umbrella-strategy to prod, but then we replace the word package-strategy with prod in the prod/bigbang.yaml file, which doesn't have any effect. We would either have to change the cp command to copy the package-strategy, or change the sed command to change umbrella-strategy
Edited by Nathaniel Enders