This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/util/add_theme_repo
2015-02-20 14:07:24 -08:00

38 lines
566 B
Bash
Executable File

#!/bin/sh -f
if [ $# -ne 2 ]; then
echo usage: $0 repo_url nickname
exit 1
fi
mkdir -p extend/theme/$2
git clone $1 extend/theme/$2
if [ $? -eq '0' ]; then
exit $?
fi
filelist=(`ls extend/theme/$2`)
cd view/theme
for a in "${filelist[@]}" ; do
base=`basename $a`
if [ $base = '.git' ]; then
echo 'ignoring git'
continue;
fi
if [ ! -d ../../extend/theme/$2/$base ]; then
echo $a 'not a directory'
continue;
fi
echo linking $base
if [ -x $base ]; then
echo $base 'file exists'
continue;
fi
ln -s ../../extend/theme/$2/$base $base
done