forked from tfcoop/www_duniayetu
13 lines
456 B
Bash
13 lines
456 B
Bash
|
#!/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 ~/code/github/freeflowuniverse
|
||
|
pushd ~/code/github/freeflowuniverse
|
||
|
git clone https://github.com/freeflowuniverse/webcomponents.git
|
||
|
ln -s ~/code/github/freeflowuniverse/webcomponents/webcomponents ~/.vmodules/freeflowuniverse/webcomponents
|
||
|
|
||
|
echo "INSTALL OK"
|