Closed medienagent-user closed 1 year ago
ddev get ddev-redis-7 fails. On macos sed fails, when "-e" is missing before the script. Instead of
sed -i "s/REPLACE_ME/${DDEV_SITENAME}/g" redis/snapshots.conf
on mac to run it has to be
sed -i -e "s/REPLACE_ME/${DDEV_SITENAME}/g" redis/snapshots.conf
On Linux both versions work.
Just ran into this issue. I hope it can be resolved soon. Thanks for providing the PR to it. 🙌
I messed up my pull request. Sorry. The first commit was the correct one.
ddev get ddev-redis-7 fails. On macos sed fails, when "-e" is missing before the script. Instead of
on mac to run it has to be
On Linux both versions work.