add plugins folder.

This commit is contained in:
Miroslav Šedivý 2022-07-14 01:07:50 +02:00
parent b7926c335e
commit d08829493a
3 changed files with 8 additions and 0 deletions

3
.gitignore vendored
View File

@ -7,3 +7,6 @@ runtime/fonts/*
runtime/icon-theme/*
!runtime/icon-theme/.gitkeep
plugins/*
!plugins/.gitkeep

5
build
View File

@ -64,6 +64,11 @@ rm -f bin/plugins/*
#
# build plugins
for plugPath in ./plugins/*; do
if [ ! -d $plugPath ];
then
continue
fi
pushd $plugPath
echo "Building plugin: $plugPath"

0
plugins/.gitkeep Normal file
View File