Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
travis: Use $(...) instead
...
in bash scripts
It's encouraged to use version with $(...). Backtick command substitution `...` is legacy syntax with several issues. 1. It has a series of undefined behaviors related to quoting in POSIX. 2. It imposes a custom escaping mode with surprising results. 3. It's exceptionally hard to nest. ~https://github.com/koalaman/shellcheck/wiki/SC2006 Signed-off-by: Karol Trzcinski <[email protected]>
- Loading branch information