1ffe3c632Sopenharmony_ci#!/bin/bash 2ffe3c632Sopenharmony_ciset -eu -o pipefail 3ffe3c632Sopenharmony_ci 4ffe3c632Sopenharmony_ciquote() { 5ffe3c632Sopenharmony_ci local arg 6ffe3c632Sopenharmony_ci for arg in "$@"; do 7ffe3c632Sopenharmony_ci printf "'" 8ffe3c632Sopenharmony_ci printf "%s" "$arg" | sed -e "s/'/'\\\\''/g" 9ffe3c632Sopenharmony_ci printf "' " 10ffe3c632Sopenharmony_ci done 11ffe3c632Sopenharmony_ci} 12ffe3c632Sopenharmony_ci 13ffe3c632Sopenharmony_ciexec scl enable devtoolset-2 "$(quote "$@")" 14