mirror of
https://github.com/NLnetLabs/krill.git
synced 2026-09-21 00:47:41 +02:00
11 lines
108 B
Bash
Executable File
11 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR=`dirname $0`
|
|
|
|
cd $DIR/ui
|
|
if [ ! -d "node_modules" ]; then
|
|
npm install
|
|
fi
|
|
|
|
yarn run build
|