calgo-lab / green-db

The monorepo that powers the GreenDB.
https://calgo-lab.github.io/green-db/
22 stars 2 forks source link

make patch-version not working on windows #43

Closed BigDatalex closed 2 years ago

BigDatalex commented 2 years ago

make patch-version throws an error when executed on windows. The error is related to the sed command. The command yields the following error:

sed -i '' -e 's/0.1.7/0.1.8/' ../infrastructure/charts/workers/Chart.yaml
sed: can't read : No such file or directory

The command without the -i '' works on windows: sed -e 's/0.1.7/0.1.8/' ../infrastructure/charts/workers/Chart.yaml

en-GB commented 2 years ago

fix in #44