added root check

This commit is contained in:
tracer 2020-01-03 13:19:41 +01:00
parent c9c26827a4
commit 598044c076
1 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,13 @@
#!/bin/sh
cp Settings/.zshrc Settings/.vimrc Settings/.zprofile Settings/.gitconfig .
if [ ! -d /usr/local/bin ]; then mkdir -p /usr/local/bin; fi
cp Settings/cdbm /usr/local/bin
if [ $(id -u) -ne 0 ]
then
echo "run me as root to copy cdbm to the system"
else
if [ ! -d /usr/local/bin ]; then mkdir -p /usr/local/bin; fi
cp Settings/cdbm /usr/local/bin
fi