From f108e279cd65e38558c49189e4730bcb1e579fe4 Mon Sep 17 00:00:00 2001 From: Frederik Gladhorn Date: Wed, 7 Aug 2019 00:36:35 +0200 Subject: [PATCH] Add script/setup (#3437) script/setup did not exist, despite being mentioned in the readme. Create it and let it call bootstrap. --- script/setup | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 script/setup diff --git a/script/setup b/script/setup new file mode 100755 index 0000000000..468f75070b --- /dev/null +++ b/script/setup @@ -0,0 +1,10 @@ +#!/bin/sh +# Resolve all frontend dependencies that the application requires to develop. + +# Stop on errors +set -e + +cd "$(dirname "$0")/.." + +script/bootstrap +