Skip to content

Commit 67dd630

Browse files
committed
makefile: update sed -i linux compat
1 parent 58b4233 commit 67dd630

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ release: ## Release client with version specified by VERSION property . make rel
3131
@echo Tagging $(VERSION)
3232
git checkout master
3333
git pull
34-
sed -i '' -e "s/VERSION = '.*'/VERSION = '$(VERSION)'/" src/InfluxDB2/Client.php
34+
sed -i -e "s/VERSION = '.*'/VERSION = '$(VERSION)'/" src/InfluxDB2/Client.php
3535
git commit -am "chore(release): release influxdb-client-php-$(VERSION)"
3636
git tag $(VERSION)
37-
sed -i '' -e "s/VERSION = '.*'/VERSION = 'dev'/" src/InfluxDB2/Client.php
37+
sed -i -e "s/VERSION = '.*'/VERSION = 'dev'/" src/InfluxDB2/Client.php
3838
git commit -am "chore(release): prepare for next development iteration"
3939
git push origin --tags
4040
git push origin master

0 commit comments

Comments
 (0)