Compare commits
No commits in common. "2948409f271a2df5168528b260ff405687c0bdc5" and "af22f05c44ca80841e08c708f34a83b89847679f" have entirely different histories.
2948409f27
...
af22f05c44
9
brick.sh
9
brick.sh
|
@ -177,13 +177,10 @@ i=1
|
|||
# pacman deps installed, lets install the actual shit
|
||||
for pkg in "${PKGS[@]}"; do
|
||||
inf "installing $pkg [$i/${#PKGS[@]}]"
|
||||
SCRIPT="
|
||||
export BRICKS_DIR=$BRICKS_DIR
|
||||
export BRICKS_DB=$BRICKS_DB
|
||||
source $(getbrick $pkg)\n
|
||||
install"
|
||||
echo -e "$SCRIPT" | bash > $BRICKS_DB/.$pkg-install-log
|
||||
source $(getbrick $pkg)
|
||||
install > $BRICKS_DB/.$pkg-install-log
|
||||
i=$(($i + 1))
|
||||
done
|
||||
|
||||
inf "done"
|
||||
|
||||
|
|
|
@ -11,5 +11,5 @@ pkgs() {
|
|||
}
|
||||
|
||||
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)"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue