Fix paths

This commit is contained in:
Digital Studium 2024-06-02 22:07:29 +03:00
parent baed8efe69
commit 8ad6b3e191
1 changed files with 4 additions and 4 deletions

View File

@ -46,10 +46,10 @@ fi
# remove autoinstalled stterm
sudo apt remove stterm -y
if [ ! -d ~/gui ]
mkdir ~/Development || true
if [ ! -d ~/Development/gui ]
then
git clone https://git.digitalstudium.com/digitalstudium/ubuntu-gui ~/gui
git clone https://git.digitalstudium.com/digitalstudium/ubuntu-gui ~/Development/gui
fi
for tool in dwm st sent
@ -57,7 +57,7 @@ do
# compiling dwm
if ! command -v $tool &> /dev/null
then
cd ~/gui/$tool
cd ~/Development/gui/$tool
sudo make install clean
cd -
fi