mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
11 lines
148 B
Bash
Executable File
11 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR=`dirname $0`
|
|
|
|
cd ${DIR}
|
|
|
|
if [ ! -L "./node_modules/marko" ]; then
|
|
mkdir -p node_modules
|
|
ln -s ../../ node_modules/marko
|
|
fi
|