Skip to content

Commit

Permalink
util make app packages zip files
Browse files Browse the repository at this point in the history
  • Loading branch information
rneher-igel committed Aug 5, 2024
1 parent d061cc2 commit e04ecd8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions utils/make-app-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,17 @@ for category in $CATEGORIES; do
rm -rf $cpt
mkdir $cpt
#mkdir "$cpt/igel"
mkdir "$cpt/target"
#mkdir "$cpt/target"
#cp *.xml "$cpt/igel"
#cp igel/*.xml "$cpt/igel"
#cp *.inf "$cpt/target"
#cp target/*.inf "$cpt/target"
#cp *.sh "$cpt/target"
cp *.md "$cpt/target"
cp -R !(*.xml|*.inf|*.sh|*.md|$cpt) "$cpt/target"
cp $COMMONREADME "$cpt"
cp $COMMONDISCLAIMER "$cpt"
#cp *.md "$cpt/target"
#cp -R !(*.xml|*.inf|*.sh|*.md|$cpt) "$cpt/target"
cp -R * "$cpt"
#cp $COMMONREADME "$cpt"
#cp $COMMONDISCLAIMER "$cpt"
cd $cpt
zip -r $zip_file .
cd ..
Expand Down

0 comments on commit e04ecd8

Please sign in to comment.