Files
constructor/install.sh
2026-01-11 01:25:36 +05:00

17 lines
301 B
Bash
Executable File

#!/bin/bash
if [ -d author/project ]; then
mv author/project author/constructor
fi
if [ -d author ]; then
mv author kodorvan
fi
for i in kodorvan/constructor/system/settings/*.sample; do
echo $i;
if [ ! -f "${i/.sample/}" ]; then
cp "$i" "${i/.sample/}";
echo ${i/.sample/};
fi
done