Fix entrypoint.sh.

This commit is contained in:
Alexis Lahouze 2018-11-25 20:20:42 +01:00
parent d32f270b60
commit b58169ed67
1 changed files with 2 additions and 2 deletions

View File

@ -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)