Skip to content
Snippets Groups Projects
Unverified Commit f4e70486 authored by Ruffin's avatar Ruffin Committed by GitHub
Browse files

Include complete path of checksum.txt in checksum

To make the checksum output easier to read, trace and debug.
parent 555bd7fb
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ references:
cat << parameters.underlay >>/checksum.txt > checksum.txt
vcs export --exact src | \
(echo vcs_export && cat) >> checksum.txt
sha256sum checksum.txt >> checksum.txt
sha256sum $PWD/checksum.txt >> checksum.txt
apt-get update
dependencies=$(
rosdep install -q -y \
......@@ -79,7 +79,7 @@ references:
tr -d \, | xargs -n1 | sort -u | xargs)
dpkg -s $dependencies | \
(echo workspace_dependencies && cat) >> checksum.txt
sha256sum checksum.txt >> checksum.txt
sha256sum $PWD/checksum.txt >> checksum.txt
setup_workspace:
description: "Setup Workspace"
parameters:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment