Add license.txt to tarball if found
This commit is contained in:
parent
614e246d2f
commit
00e0d3bb1e
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue