We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 613bc42 commit 426b92fCopy full SHA for 426b92f
src/Symfony/Component/Intl/Resources/bin/compile
@@ -0,0 +1,12 @@
1
+#!/usr/bin/env bash
2
+
3
+if [[ $1 == force || ! $(docker ps -a | grep symfony-intl) ]]; then
4
+ docker rm -f symfony-intl
5
+ docker create --name symfony-intl -it -v /tmp:/tmp -v $(pwd):/app -w /app jakzal/php-intl:7.2-63.1 bash
6
+ docker start symfony-intl
7
+ docker exec symfony-intl bash -xc "apt-get update && apt-get -y install build-essential"
8
+else
9
10
+fi;
11
12
+docker exec -u $(id -u):$(id -g) symfony-intl php src/Symfony/Component/Intl/Resources/bin/update-data.php
0 commit comments