Missed one of the escapes

pull/959/head
Morgan Pretty 1 year ago
parent 087eb78513
commit 7b6a209ff3

@ -179,7 +179,7 @@ local update_cocoapods_cache(depends_on) = {
{
name: 'Install Codecov CLI',
commands: [
'pip3 install codecov-cli 2>&1 | grep "The script codecovcli is installed in" | sed -n -e "s/^.*The script codecovcli is installed in \\(.*\\) which is not on PATH.*$/\1/p" > ./build/artifacts/codecov_install_path',
'pip3 install codecov-cli 2>&1 | grep "The script codecovcli is installed in" | sed -n -e "s/^.*The script codecovcli is installed in \\(.*\\) which is not on PATH.*$/\\1/p" > ./build/artifacts/codecov_install_path',
|||
if [[ ! -s ./build/artifacts/codecov_install_path ]]; then
which codecovcli > ./build/artifacts/codecov_install_path

Loading…
Cancel
Save