Skip to content

Commit 5f92360

Browse files
committed
修复arm standalone无法使用
1 parent 9a2a8f0 commit 5f92360

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

wd.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,12 +294,12 @@ if [ $arch == "x86_64" ]; then
294294
elif [ $arch == "aarch64" ]; then
295295
docker_hub="seleniarm/hub" # arm64 Hub镜像
296296
docker_node="seleniarm/node-chromium" # arm64 Node镜像
297-
docker_standalone = "seleniarm/standalone-chromium" # arm64 Standalone镜像
297+
docker_standalone="seleniarm/standalone-chromium" # arm64 Standalone镜像
298298
echo -e "${BLUE}已检测到系统架构为${YELLOW}arm64 ${BLUE}已自动切换到arm镜像${PLAIN}"
299299
elif [ $arch == "armv7l" ]; then
300300
docker_hub="seleniarm/hub" # arm32 Hub镜像
301301
docker_node="seleniarm/node-chromium" # arm32 Node镜像
302-
docker_standalone = "seleniarm/standalone-chromium" # arm32 Standalone镜像
302+
docker_standalone="seleniarm/standalone-chromium" # arm32 Standalone镜像
303303
echo -e "${BLUE}已检测到系统架构为${YELLOW}arm32 ${BLUE}已自动切换到arm镜像${PLAIN}"
304304
else
305305
echo -e "${BLUE}已检测到系统架构为${YELLOW}$arch${PLAIN}"

wd_en.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,12 +286,12 @@ if [ $arch == "x86_64" ]; then
286286
elif [ $arch == "aarch64" ]; then
287287
docker_hub="seleniarm/hub" # arm64 Hub image
288288
docker_node="seleniarm/node-chromium" # arm64 Node image
289-
docker_standalone = "seleniarm/standalone-chromium" # arm64 Standalone Image
289+
docker_standalone="seleniarm/standalone-chromium" # arm64 Standalone Image
290290
echo -e "${BLUE}System architecture detected as ${YELLOW}arm64${BLUE}. Using ARM images${PLAIN}"
291291
elif [ $arch == "armv7l" ]; then
292292
docker_hub="seleniarm/hub" # arm32 Hub Image
293293
docker_node="seleniarm/node-chromium" # arm32 Node Image
294-
docker_standalone = "seleniarm/standalone-chromium" # arm32 Standalone Image
294+
docker_standalone="seleniarm/standalone-chromium" # arm32 Standalone Image
295295
echo -e "${BLUE}System architecture detected as ${YELLOW}arm32${BLUE}. Using ARM images${PLAIN}"
296296
else
297297
echo -e "${BLUE}System architecture detected as ${YELLOW}$arch${PLAIN}"

0 commit comments

Comments
 (0)