Initial commit

This commit is contained in:
garden
2026-01-07 13:05:12 +05:00
commit 680a9659e3
151 changed files with 2912 additions and 0 deletions

17
install.sh Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -d author/project ]; then
mv author/project author/campanula
fi
if [ -d author ]; then
mv author garden
fi
for i in garden/campanula/system/settings/*.sample; do
echo $i;
if [ ! -f "${i/.sample/}" ]; then
cp "$i" "${i/.sample/}";
echo ${i/.sample/};
fi
done