feat(dwmtitus-setup): use full path.

Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com>
This commit is contained in:
RazoBeckett 2024-09-15 14:11:22 +00:00 committed by GitHub
parent 3026b757e0
commit 0ecfb64121
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -300,7 +300,7 @@ install_slstatus() {
read -r response # -r flag to prevent backslashes from being interpreted
if [ "$response" = "y" ] || [ "$response" = "Y" ]; then
echo "Installing slstatus"
cd slstatus/ || { echo "Failed to change directory to slstatus"; return 1; }
cd "$HOME/dwm-titus/slstatus" || { echo "Failed to change directory to slstatus"; return 1; }
if $ESCALATION_TOOL make clean install; then
echo "slstatus installed successfully"
else