Files
sanmotors/install.sh
Кодорвань 26bbf0f33e Initial commit
2026-03-17 12:47:19 +05:00

18 lines
298 B
Bash

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