diff options
author | P. J. McDermott <pjm@nac.net> | 2014-02-25 12:15:24 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2014-02-25 12:15:24 (EST) |
commit | d296bed0039995c20abf510c2c9b36b85eacfa6f (patch) | |
tree | a178506d4fabfd088482c876054a9a8f61f81215 /src | |
parent | 98bba1bb200151a2a64e45068ac8eadb67f658a5 (diff) |
src/oh-installfiles.sh: Use new locale functions.
Diffstat (limited to 'src')
-rw-r--r-- | src/oh-installfiles.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/oh-installfiles.sh b/src/oh-installfiles.sh index 5083c1f..0cdfecf 100644 --- a/src/oh-installfiles.sh +++ b/src/oh-installfiles.sh @@ -36,7 +36,7 @@ main() dir="${OPTARG}" ;; ?) - oh_error "$(ob_get_msg 'bad_opt')" + oh_error "$(oh_get_msg 'bad_opt')" exit 1 ;; esac @@ -45,7 +45,7 @@ main() for pkg in ${OPK_PACKAGES}; do [ -r "../${pkg}.pkg/files" ] || continue - oh_info "$(ob_get_msg 'installing_files')" "${pkg}" + oh_info "$(oh_get_msg 'installing_files')" "${pkg}" mkdir -p "${pkg}.data" chmod 755 "${pkg}.data" @@ -63,7 +63,7 @@ main() # TODO: See above. Count links. if [ "$(find "${dir}" -type f | wc -l)" -gt 0 ]; then - oh_warn "$(ob_get_msg 'files_not_installed')" + oh_warn "$(oh_get_msg 'files_not_installed')" fi } |