Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/mos-icons/src/commit/52b09d0e2e152932569ff0c9f022473dfb46b4ea/icon-theme-mos-classic/mk-symlinks.sh You should set ROOT_URL correctly, otherwise the web may not work correctly.
Icons for M OS distros / Иконки для дистрибутивов М ОС
 
 
mos-icons/icon-theme-mos-classic/mk-symlinks.sh

31 lines
623 B

#!/usr/bin/env bash
set -efu
# PREFIX="../../.."
PREFIX="${PREFIX:-/usr/share/icons}"
mkdir -p apps/128x128 apps/64x64 apps/48x48 apps/32x32 apps/24x24 apps/16x16
_ln(){
if ! test -e "$1"; then
echo "$1 does not exist!"
return 1
fi
ln -sf "$1" "$2"
}
# svg
pushd apps/128x128
_ln ${PREFIX}/hicolor/scalable/apps/mos.svg basealt.svg
_ln ${PREFIX}/hicolor/scalable/apps/mos.svg altlinux.svg
popd
# png
for i in 64x64 48x48 32x32 24x24 16x16
do
pushd apps/${i}
_ln ${PREFIX}/hicolor/${i}/apps/mos.png basealt.png
_ln ${PREFIX}/hicolor/${i}/apps/mos.png altlinux.png
popd
done