Add script/setup (#3437)
script/setup did not exist, despite being mentioned in the readme. Create it and let it call bootstrap.pull/3462/head
parent
8dce24ddfc
commit
f108e279cd
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue