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