Add debugging log.
This commit is contained in:
parent
d5b4e5184a
commit
a9b26221ec
2 changed files with 5 additions and 0 deletions
3
src/in
3
src/in
|
@ -16,6 +16,9 @@ if [ "$computed_version" != "$VERSION" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
script="$(envsubst "$(< scripts/get_files.vars)" < "scripts/get_files.sh")"
|
script="$(envsubst "$(< scripts/get_files.vars)" < "scripts/get_files.sh")"
|
||||||
|
echo "tar c script:" >&2
|
||||||
|
echo "$script" >&2
|
||||||
|
|
||||||
if [ -n "$FILES" ]; then
|
if [ -n "$FILES" ]; then
|
||||||
(
|
(
|
||||||
cd "$1"
|
cd "$1"
|
||||||
|
|
2
src/out
2
src/out
|
@ -10,6 +10,8 @@ if [ -z "$FILES" ]; then
|
||||||
extract=false
|
extract=false
|
||||||
fi
|
fi
|
||||||
script="$(EXTRACT="$extract" envsubst "$(< scripts/put_files.vars)" < scripts/put_files.sh)"
|
script="$(EXTRACT="$extract" envsubst "$(< scripts/put_files.vars)" < scripts/put_files.sh)"
|
||||||
|
echo "tar x script:" >&2
|
||||||
|
echo "$script" >&2
|
||||||
(
|
(
|
||||||
cd "$1"
|
cd "$1"
|
||||||
pipe="$(tmpname)"
|
pipe="$(tmpname)"
|
||||||
|
|
Loading…
Reference in a new issue