lighthouse 11.4.0-dev.20240111 → 11.4.0-dev.20240112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -75,4 +75,21 @@ curl "$url" -Lo chrome.zip && unzip -q chrome.zip && rm chrome.zip
|
|
|
75
75
|
mv * "$chrome_out"
|
|
76
76
|
cd - && rm -rf .tmp-download
|
|
77
77
|
|
|
78
|
+
echo "OUTPUT DIR: $chrome_out"
|
|
78
79
|
ls "$chrome_out"
|
|
80
|
+
|
|
81
|
+
echo "";
|
|
82
|
+
echo "Verifying CHROME_PATH...";
|
|
83
|
+
|
|
84
|
+
if ! [ -f $CHROME_PATH ]; then
|
|
85
|
+
echo "CHROME_PATH does not point to a valid file"
|
|
86
|
+
exit 1
|
|
87
|
+
else
|
|
88
|
+
echo "CHROME_PATH is good!"
|
|
89
|
+
fi
|
|
90
|
+
|
|
91
|
+
# TODO: Find a convenient way to check the version in windows
|
|
92
|
+
if [ "$machine" != "MinGw" ]; then
|
|
93
|
+
echo "CHROME_PATH version:"
|
|
94
|
+
$CHROME_PATH --version
|
|
95
|
+
fi
|
package/package.json
CHANGED