Skip to content

Commit

Permalink
fix(build): fix bad substitution in sed
Browse files Browse the repository at this point in the history
  • Loading branch information
socsieng committed Dec 30, 2020
1 parent 3f59293 commit 254161e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bottle.sh
Expand Up @@ -8,7 +8,7 @@ version=${1:-`cat $script_folder/../version.txt`}
forumula_template=$script_folder/../Formula/sendkeys_template.rb
forumula=$script_folder/../Formula/sendkeys.rb
url="file://$cwd/sendkeys.tar.gz"
sed_url=`echo $url | sed 's/\//\\\//g'`
sed_url=`echo $url | sed 's/\\//\\\\\//g'`

version=`echo $version | sed -E 's/^v//g'`

Expand Down

0 comments on commit 254161e

Please sign in to comment.