Compare commits

..

No commits in common. "2948409f271a2df5168528b260ff405687c0bdc5" and "af22f05c44ca80841e08c708f34a83b89847679f" have entirely different histories.

2 changed files with 4 additions and 7 deletions

View File

@ -177,13 +177,10 @@ i=1
# pacman deps installed, lets install the actual shit # pacman deps installed, lets install the actual shit
for pkg in "${PKGS[@]}"; do for pkg in "${PKGS[@]}"; do
inf "installing $pkg [$i/${#PKGS[@]}]" inf "installing $pkg [$i/${#PKGS[@]}]"
SCRIPT=" source $(getbrick $pkg)
export BRICKS_DIR=$BRICKS_DIR install > $BRICKS_DB/.$pkg-install-log
export BRICKS_DB=$BRICKS_DB
source $(getbrick $pkg)\n
install"
echo -e "$SCRIPT" | bash > $BRICKS_DB/.$pkg-install-log
i=$(($i + 1)) i=$(($i + 1))
done done
inf "done" inf "done"

View File

@ -11,5 +11,5 @@ pkgs() {
} }
install() { install() {
echo sh -c "\$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | bash sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
} }