Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
fix install_version script
Browse files Browse the repository at this point in the history
previously, the grep for "version" matched multiple lines.
it still worked. but to be on the safer side, this has been fixed
  • Loading branch information
karuppiah7890 committed Mar 7, 2020
1 parent 5e2102b commit e016f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
## version of the plugin mentioned
## in the plugin.yaml

version="$(cat plugin.yaml | grep "version" | cut -d '"' -f 2)"
version="$(cat plugin.yaml | grep "version:" | cut -d '"' -f 2)"
./scripts/install.sh $version

0 comments on commit e016f10

Please sign in to comment.