Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ruby version check in plugin test
Before $ if ["${ruby}" = '2.7']; then echo yay; fi bash: [2.7: command not found After $ if [ "${ruby}" = '2.7' ]; then echo yay; fi yay Fixes: f164a3f
- Loading branch information