Add license.txt to tarball if found

This commit is contained in:
Bart van Strien 2017-09-07 15:34:08 +02:00
parent 614e246d2f
commit 00e0d3bb1e

View File

@ -79,6 +79,13 @@ main()
# Add our icon and prototype desktop file
cp "$appname.desktop.in" "$DEST"
cp "$appname.svg" "$DEST"
# And the license file, if it exists
if test -f "license.txt"; then
cp "license.txt" "$DEST"
else
echo "No license.txt file found, skipping"
fi
}
main love