diff options
Diffstat (limited to 'src/oh-autoclean.sh')
-rw-r--r-- | src/oh-autoclean.sh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/oh-autoclean.sh b/src/oh-autoclean.sh index 6efd949..433e681 100644 --- a/src/oh-autoclean.sh +++ b/src/oh-autoclean.sh @@ -30,13 +30,16 @@ main() while getopts 's:S:B:' opt; do case "${opt}" in s) - oh_set_buildsystem_option 'source-dir' "${OPTARG}" + oh_set_buildsystem_option 'source-dir' \ + "${OPTARG}" ;; 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')" |