fix install script

This commit is contained in:
user1 2023-04-06 16:13:40 +02:00
parent 36a9d3a2f4
commit d9cf1e868a

View file

@ -6,10 +6,11 @@ clear
git config --global credential.helper store git config --global credential.helper store
arch=$(uname -m) arch=$(uname -m)
branch=master
repo=SpectreOS repo=SpectreOS
repo1=shell-scripte-code repo1=shell-scripte-code
cache=/var/cache/pacman/pkg/ cache=/var/cache/pacman/pkg/
repo_url="https://git.spectreos.de/simono41/SpectreOS/raw/master/repo.sh" repo_url="https://git.brothertec.eu/simono41/SpectreOS/raw/master/repo.sh"
if cat /etc/passwd | grep "x:1000" > /dev/null; then if cat /etc/passwd | grep "x:1000" > /dev/null; then
tempuser=$(cat /etc/passwd | grep "x:1000" | awk '{print $1}') tempuser=$(cat /etc/passwd | grep "x:1000" | awk '{print $1}')
@ -85,7 +86,7 @@ function gitclone() {
if [ -d "/opt/${repo}" ]; then if [ -d "/opt/${repo}" ]; then
echo "${repo} existiert bereits!!!" echo "${repo} existiert bereits!!!"
cd /opt/${repo} cd /opt/${repo}
git checkout ${arch} git checkout ${branch}
if ! git remote set-url origin ${WEBADDRESS_OS}; then if ! git remote set-url origin ${WEBADDRESS_OS}; then
git remote add origin ${WEBADDRESS_OS} git remote add origin ${WEBADDRESS_OS}
fi fi