1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 22:42:48 +03:00

ci: fix sed usage when updating homebrew

This commit is contained in:
Wez Furlong 2020-06-08 11:09:16 -07:00
parent d979a63e1a
commit 3fb3a61a99

View File

@ -32,7 +32,7 @@ case $OSTYPE in
zip -r $zipname $zipdir
SHA256=$(shasum -a 256 $zipname | cut -d' ' -f1)
sed -e "s/@TAG@/$TAG_NAME/" -e "s/@SHA256@/$SHA256/" < ci/wezterm-homebrew-macos.rb.template > wezterm.rb
sed -e "s/@TAG@/$TAG_NAME/g" -e "s/@SHA256@/$SHA256/g" < ci/wezterm-homebrew-macos.rb.template > wezterm.rb
cat wezterm.rb
;;