From b58169ed67bff31afcb7e047f7bb1b640ac80b63 Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Sun, 25 Nov 2018 20:20:42 +0100 Subject: [PATCH] Fix entrypoint.sh. --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index ede2cb2..3cd1392 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh die() { echo $* >&2 @@ -6,7 +6,7 @@ die() { } # Get latest stage3 tag -STAGE3_TAG=$(curl -s \ +STAGE3_TAG=$(wget -q -O - \ http://distfiles.gentoo.org/releases/amd64/autobuilds/latest-stage3-amd64.txt \ | grep -v "^#" | cut -d ' ' -f 1)