fix line length to be under 100 chars in macOS install date

This commit is contained in:
Andrew Titmuss 2017-10-13 14:44:22 +11:00
parent 3cac29c804
commit 123d1652ff
No known key found for this signature in database
GPG key ID: 8AF42975C787E0B2

View file

@ -2256,7 +2256,7 @@ get_install_date() {
*)
if [[ "$os" == "Mac OS X" ]]; then
install_date="$(ls -dlctUT "$install_file" | awk '{printf $9 " " $6 " " $7 " " $8}')"
install_date="$(ls -dlctUT "$install_file" | awk '{printf $9 " " $6 " "$7 " " $8}')"
else
install_date="$(ls -dlctT "$install_file" | awk '{printf $9 " " $6 " " $7 " " $8}')"
fi