Add script to setup translation fetching (#14481)
* Add script to setup translation fetching * Update bootstrappull/14503/head
parent
4190ff5a2b
commit
1a66b8a374
|
@ -7,4 +7,4 @@ set -e
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
|
|
||||||
# Install node modules
|
# Install node modules
|
||||||
yarn install
|
yarn install
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# Setup translation fetching during development
|
||||||
|
|
||||||
|
# Stop on errors
|
||||||
|
set -e
|
||||||
|
|
||||||
|
cd "$(dirname "$0")/.."
|
||||||
|
|
||||||
|
./node_modules/.bin/gulp setup-and-fetch-nightly-translations
|
Loading…
Reference in New Issue