Removing links to README and LICENSE

This commit is contained in:
Siina Mashek 2020-11-24 14:24:42 +02:00
parent d353fb427b
commit 23ecd21086

View File

@ -5,7 +5,7 @@ dest="/etc/portage/"
for file in "${files[@]}"; do
# Ignore link.sh
if [ "$file" != "link.sh" ]; then
if [ "$file" != "link.sh" -a "$file" != "LICENSE" -a "$file" != "README.md" ]; then
ln -sf "$PWD/$file" "$dest"
fi
done