diff options
author | davidovski <david@davidovski.xyz> | 2022-05-31 22:35:17 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-31 22:35:17 +0100 |
commit | 7568f82cd76e74b6ed0b1dbc9f56139fa1068500 (patch) | |
tree | 11789ea0399f70977b2cce4769378ba3407b519c /xibuild.sh | |
parent | 29bec3847866b7193413c6516198f3cdebff4e00 (diff) |
changed -d to -ov1.4
Diffstat (limited to 'xibuild.sh')
-rw-r--r-- | xibuild.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -31,7 +31,7 @@ ${BLUE}Avaiable Options: ${LIGHT_CYAN}specify the chroot to use when building packages${LIGHT_WHITE}[default: /] ${BLUE}-l ${LIGHT_BLUE}[path] ${LIGHT_CYAN}specify the file to use for logs${LIGHT_WHITE}[default: \$output/build.log] - ${BLUE}-d ${LIGHT_BLUE}[path] + ${BLUE}-o ${LIGHT_BLUE}[path] ${LIGHT_CYAN}specify the output directory to put xipkg files ${LIGHT_WHITE}[default: ./] ${BLUE}-C ${LIGHT_BLUE}[path] ${LIGHT_CYAN}specify the directory to find xibuild files${LIGHT_WHITE}[default: ./] @@ -222,11 +222,11 @@ xibuild_clean () { rm $out_dir/build.log } -while getopts ":r:l:C:k:p:b:d:vcinsh" opt; do +while getopts ":r:l:C:k:p:b:o:vcinsh" opt; do case "${opt}" in r) root=$(realpath ${OPTARG});; - d) + o) out_dir=$(realpath ${OPTARG});; l) logfile=$(realpath ${OPTARG});; |