summaryrefslogtreecommitdiff
path: root/helpers/lh_source_generic
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-23 10:04:47 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 18:18:28 +0100
commit677415f6d7efc1e5b888570d70af311d2900c69c (patch)
tree32fe7ced768666c229fff913fe12cbbf2fdd34e4 /helpers/lh_source_generic
parent811ff0532fcb3305ebefcd1d61e4eb6c260902eb (diff)
downloadlive-build-677415f6d7efc1e5b888570d70af311d2900c69c.zip
live-build-677415f6d7efc1e5b888570d70af311d2900c69c.tar.gz
Adding live-helper 1.0~a2-1.
Diffstat (limited to 'helpers/lh_source_generic')
-rwxr-xr-xhelpers/lh_source_generic16
1 files changed, 7 insertions, 9 deletions
diff --git a/helpers/lh_source_generic b/helpers/lh_source_generic
index a4fa1cc..88b0bf7 100755
--- a/helpers/lh_source_generic
+++ b/helpers/lh_source_generic
@@ -17,7 +17,6 @@ Set_defaults
if [ "${LIVE_SOURCE}" = "disabled" ]
then
- echo "W: source images disabled (FIXME)"
exit 0
fi
@@ -26,28 +25,27 @@ do
if [ "${IMAGE}" = "generic" ]
then
# Requiring stage file
- Require_stagefile "${LIVE_ROOT}"/.stage/source_download
+ Require_stagefile .stage/source_download
# Checking lock file
- Check_lockfile "${LIVE_ROOT}"/.lock
+ Check_lockfile .lock
# Creating lock file
- Create_lockfile "${LIVE_ROOT}"/.lock
+ Create_lockfile .lock
# Checking stage file
- Check_stagefile "${LIVE_ROOT}"/.stage/source_generic
+ Check_stagefile .stage/source_generic
# Remove old source
- if [ -f "${LIVE_ROOT}"/source.tar ]
+ if [ -f source.tar ]
then
- rm -f "${LIVE_ROOT}"/source.tar
+ rm -f source.tar
fi
# Create tarball
- cd "${LIVE_ROOT}" &&
tar cf source.tar source
# Creating stage file
- Create_stagefile "${LIVE_ROOT}"/.stage/source_generic
+ Create_stagefile .stage/source_generic
fi
done