1
0
mirror of https://github.com/schollz/croc.git synced 2024-11-28 01:16:10 +03:00

More Cygwin updates

Forgot to update the install logic case statement in main
This commit is contained in:
Quinn 2019-08-13 22:45:59 -05:00 committed by GitHub
parent a9caea4d64
commit a31bc56c23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -589,6 +589,8 @@ main() {
install_file_rcode="${?}";;
"macOS" ) install_file_freebsd "${tmpdir}/${croc_bin_name}" "${prefix}/";
install_file_rcode="${?}";;
"Windows" ) install_file_cygwin "${tmpdir}/${croc_bin_name}" "${prefix}/";
install_file_rcode="${?}";;
esac
if [[ "${install_file_rcode}" == "0" ]]; then
print_message "== Installed ${croc_bin_name} to ${prefix}/" "ok"