diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-08-18 16:43:54 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-08-18 16:43:54 (EDT) |
commit | d5fd4c18501b79b73f7c249b4f562233a1e82440 (patch) | |
tree | 7f97f855107bfe9ecbef44a0203b4e34ee6ebac7 /lib | |
parent | 54685daf378cd4cf9f521541e218ba1ab9d66e5d (diff) |
install: Error if chroot dir exists
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cmd/install.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/cmd/install.sh b/lib/cmd/install.sh index 4197fbc..277510e 100644 --- a/lib/cmd/install.sh +++ b/lib/cmd/install.sh @@ -66,8 +66,11 @@ cmd_install_main() "${arch}" "${plat}" fi + if [ -d "${chroot}" ]; then + error 2 "$(get_msg 'cmd_install_chroot_dir_exists')" "${chroot}" + fi if ! mkdir "${chroot}" || ! mkdir "${chroot}/.prokit"; then - : Error + error 2 "$(get_msg 'cmd_install_mkdir_chroot_fail')" "${chroot}" fi cmd_install_find_pkgs "${suite}" "${arch}" "${plat}" "${chroot}" |