summaryrefslogtreecommitdiff
path: root/bin/unpack-sources
diff options
context:
space:
mode:
Diffstat (limited to 'bin/unpack-sources')
-rw-r--r--bin/unpack-sources5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/unpack-sources b/bin/unpack-sources
index 4b0f9beb0c8d..a6a14abe31df 100644
--- a/bin/unpack-sources
+++ b/bin/unpack-sources
@@ -75,7 +75,10 @@ for tarball in $tarballs ; do
echo "Unpacking $tarname..."
echo tar -xf "$tarball" -C "$lo_src_dir"
- tar -xf "$tarball" -C "$lo_src_dir"
+ if ! tar -xf "$tarball" -C "$lo_src_dir"; then
+ echo "Error: could not unpack $tarname"
+ exit 1
+ fi
# create symlinks for module directories; ignore git-hooks directory
for dir in `find "$lo_src_dir/$tarname" -mindepth 1 -maxdepth 1 -type d -path $lo_src_dir/$tarname/git-hooks -o -printf "$tarname/%f\n"` ; do