diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-12 16:56:00 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-12 16:56:00 +0100 |
commit | 9918dea988bb93beb1d6f3c9d3e8f8a2e85b1860 (patch) | |
tree | 30194c9f3cee982e8a3045f0c962fc3f84008242 | |
parent | 8764495da70ea584707adf6715273b8ee41ab4f4 (diff) |
./ not needed with new cpio way
-rwxr-xr-x | scripts/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install.sh b/scripts/install.sh index 0c545d7c2..016e35746 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -211,7 +211,7 @@ if ! T=$(mktemp -d /tmp/openadk.XXXXXXXXXX); then print -u2 Error creating temporary directory. exit 1 fi -tar -xOzf "$src" ./usr/share/grub-bin/core.img >"$T/core.img" +tar -xOzf "$src" usr/share/grub-bin/core.img >"$T/core.img" integer coreimgsz=$($statcmd "$T/core.img") if (( coreimgsz < 1024 )); then print -u2 core.img is probably too small: $coreimgsz |