Fix entrypoint.sh.

This commit is contained in:
Alexis Lahouze 2018-11-25 20:20:42 +01:00
parent d32f270b60
commit b58169ed67

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
die() { die() {
echo $* >&2 echo $* >&2
@ -6,7 +6,7 @@ die() {
} }
# Get latest stage3 tag # Get latest stage3 tag
STAGE3_TAG=$(curl -s \ STAGE3_TAG=$(wget -q -O - \
http://distfiles.gentoo.org/releases/amd64/autobuilds/latest-stage3-amd64.txt \ http://distfiles.gentoo.org/releases/amd64/autobuilds/latest-stage3-amd64.txt \
| grep -v "^#" | cut -d ' ' -f 1) | grep -v "^#" | cut -d ' ' -f 1)