From 5022763bf1b5139f1b42ba85d6047a9559a8cfbe Mon Sep 17 00:00:00 2001 From: Emilie Ouwerx Date: Tue, 5 Dec 2023 16:26:35 +0300 Subject: [PATCH] add crystallib to install script --- install.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/install.sh b/install.sh index 2a64393..974522e 100644 --- a/install.sh +++ b/install.sh @@ -1,13 +1,14 @@ #!/usr/bin/env bash set -e -SOURCE=${BASH_SOURCE[0]} -DIR_OF_THIS_SCRIPT="$( dirname "$SOURCE" )" -ABS_DIR_OF_SCRIPT="$( realpath $DIR_OF_THIS_SCRIPT )" -mkdir -p ~/.vmodules/freeflowuniverse +mkdir -p ~/.vmodules/freeflowuniverse mkdir -p ~/code/github/freeflowuniverse pushd ~/code/github/freeflowuniverse +git clone https://github.com/freeflowuniverse/crystallib.git +git checkout development_db +ln -s ~/code/github/freeflowuniverse/crystallib/crystallib ~/.vmodules/freeflowuniverse/crystallib + git clone https://github.com/freeflowuniverse/webcomponents.git ln -s ~/code/github/freeflowuniverse/webcomponents/webcomponents ~/.vmodules/freeflowuniverse/webcomponents - +popd echo "INSTALL OK" \ No newline at end of file