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:28:40 -0500 |
commit | 9b2fae41902b9566d4898b2eaff6f38c83838e44 (patch) | |
tree | 7cf13b21a64eabd5721c9a7c15ff5a1ad066d9e8 | |
parent | 7edf1f7c0828a3807e3d7042900072d533233edd (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" |