[aur-general] TU Application: Andrew Crerar
Jeremy Audet
ichimonji10 at gmail.com
Tue Nov 21 15:25:24 UTC 2017
> ttf-google-fonts-git:
> - `install -dm755 ...; install -Dm644 ...;` is kind of like sprinkling
> your code with `sleep 1`
(I think) I understand what you mean, but Andrew might not. To put a finer
point on it, `install -dm755` is unnecessary, because install's `-D` flag
creates directories anyway. For example, this:
install -dm755 "$pkg_license_path"
install -Dm644 "$src_license_path" "$pkg_license_path"/OFL.txt
Could be replaced with this:
install -Dm644 "$src_license_path" "$pkg_license_path"/OFL.txt
More information about the aur-general
mailing list