copy LICENSE file

This commit is contained in:
toshi0383 2018-02-26 19:30:16 +09:00
parent a808975bbd
commit f54028567d
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2017 Yonas Kolb
Copyright (c) 2018 Yonas Kolb
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -4,6 +4,7 @@ BINDIR=$TMP/bin
SHAREDIR=$TMP/share
ZIPFILE=$TMP/${TOOL_NAME_LOWER:?}.zip
INSTALLSH=scripts/install.sh
LICENSE=LICENSE
# copy
@ -15,6 +16,8 @@ cp -R SettingPresets $SHAREDIR/SettingPresets
cp $INSTALLSH $TMP
cp $LICENSE $TMP
# zip
(cd $TMP/..; zip -r $ZIPFILE $TOOL_NAME)