diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-21 12:27:51 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-21 12:27:51 -0500 |
commit | 3f818a267c9b00f314acd59d3abdc6cef6c997c5 (patch) | |
tree | b7c509a6567f4e9878921625f7deb5cfb8e48d84 | |
parent | 408e91abe0955f66392fe0aa89f9eec008995655 (diff) |
Remove verbosity of chown command.
-rwxr-xr-x | lfs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ fi if [[ ! -f "${LFS}"/sources/limited ]]; then printf "%b" " ${IGRN}Changing ownership of ${IWHT}${LFS}${IGRN} \ to user ${IWHT}${USER}${RST}\n" - sudo chown -v "${USER}" "${LFS}" + sudo chown "${USER}" "${LFS}" printf "%b" " ${IGRN}Creating limited directory structure at \ ${IWHT}${LFS}${IGRN}${RST}\n" |