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 a5aa3e8 commit a815960Copy full SHA for a815960
extensions/core/install_all.sh
@@ -8,11 +8,17 @@ mv /etc/apt/apt.conf.d/docker-clean /tmp/docker-clean
8
9
apt-get update
10
11
+mkdir -p /var/log/ext-php/
12
+
13
for ext in */; do \
14
cd $ext
15
ext_no_slash=${ext%/}
16
echo "***************** Installing $ext_no_slash ******************"
- ./install.sh
17
+ LOG="/var/log/ext-php/install-${ext_no_slash}"
18
+ start=$(date +%s)
19
+ ./install.sh 2>&1 | tee -a "${LOG}.log"
20
+ end=$(date +%s)
21
+ echo "$(($end-$start)) seconds to execute ${ext_no_slash}" > "${LOG}.time"
22
cd ..
23
done
24
0 commit comments