fix indentation

master
an 2019-07-12 11:56:12 -04:00
parent 80d3d42ede
commit f702d17287
1 changed files with 17 additions and 17 deletions

View File

@ -2,37 +2,37 @@
# copy regular files # copy regular files
mkdir -p \ mkdir -p \
applications \ applications \
build-system \ build-system \
fonts \ fonts \
network \ network \
scripts \ scripts \
system \ system \
themes \ themes \
unused \ unused \
vim vim
while read f t while read f t
eval set t $t eval set t $t
cp -r $t $f cp -r $t $f
end < files end < files
# copy font configs # copy font configs
find /etc/fonts/conf.d/*.conf > fonts/conflist find /etc/fonts/conf.d/*.conf > fonts/conflist
for f in /etc/fonts/conf.d/*.conf for f in /etc/fonts/conf.d/*.conf
if not test -L "$f" if not test -L "$f"
cp $f fonts cp $f fonts
end end
end end
# copy vim package names # copy vim package names
tree -dL 3 ~/.vim/pack > vim/packages tree -dL 3 ~/.vim/pack > vim/packages
for repo in ~/.vim/pack/*/*/* for repo in ~/.vim/pack/*/*/*
pushd $repo pushd $repo
echo (basename $PWD) "<"(git config --get remote.origin.url)">" echo (basename $PWD) "<"(git config --get remote.origin.url)">"
popd popd
end | sort > vim/package_repos end | sort > vim/package_repos
sed -i 's/password>.*<\//password>password removed<\//g' network/icecast.xml sed -i 's/password>.*<\//password>password removed<\//g' network/icecast.xml