diff options
Diffstat (limited to 'src/oh-autotest.sh')
-rw-r--r-- | src/oh-autotest.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/oh-autotest.sh b/src/oh-autotest.sh index 34fcb56..c57e510 100644 --- a/src/oh-autotest.sh +++ b/src/oh-autotest.sh @@ -30,10 +30,12 @@ main() while getopts 'S:B:' opt; do case "${opt}" in S) - oh_set_buildsystem_option 'build-system' "${OPTARG}" + oh_set_buildsystem_option 'build-system' \ + "${OPTARG}" ;; B) - oh_set_buildsystem_option 'build-dir' "${OPTARG}" + oh_set_buildsystem_option 'build-dir' \ + "${OPTARG}" ;; ?) oh_error "$(oh_get_msg 'bad_opt')" |