michael@0: #!/bin/bash michael@0: # helper tool for testing. Cats the manifest out of a mar file michael@0: michael@0: mar="$1" michael@0: workdir="/tmp/catmanifest" michael@0: michael@0: rm -rf "$workdir" michael@0: mkdir -p "$workdir" michael@0: cp "$1" "$workdir" michael@0: cd "$workdir" michael@0: mar -x "$1" michael@0: mv updatev2.manifest updatev2.manifest.bz2 michael@0: bzip2 -d updatev2.manifest.bz2 michael@0: cat updatev2.manifest