From eeecd2651b64cd7aa94b1bb47f50594a9a3a7118 Mon Sep 17 00:00:00 2001 From: KAiZ <24286590+KaizIqbal@users.noreply.github.com> Date: Thu, 14 Nov 2019 09:10:43 +0530 Subject: [PATCH] path changed to /tmp --- Bibata.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Bibata.sh b/Bibata.sh index c1be7e55..c7e58a96 100755 --- a/Bibata.sh +++ b/Bibata.sh @@ -1,7 +1,7 @@ #!/bin/sh # Default settings -BIBATA=${BIBATA:-~/.Bibata} +BIBATA=${BIBATA:-/tmp/Bibata} REPO=${REPO:-KaizIqbal/Bibata_Cursor} REMOTE=${REMOTE:-https://github.com/${REPO}.git} BRANCH=${BRANCH:-devlopment} @@ -55,10 +55,9 @@ setup_bibata_repo() { } setup_bibata() { - cd ~/.Bibata/ + cd /tmp/Bibata/ ./install.sh - cd ~ - rm -rf .Bibata + rm -rf /tmp/Bibata echo } @@ -80,8 +79,7 @@ main() { setup_bibata_repo setup_bibata - cd ~ - rm -rf .Bibata + rm -rf /tmp/Bibata printf "$RESET" }