Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 #!/bin/bash
2 # helper tool for testing. Cats the manifest out of a mar file
4 mar="$1"
5 workdir="/tmp/catmanifest"
7 rm -rf "$workdir"
8 mkdir -p "$workdir"
9 cp "$1" "$workdir"
10 cd "$workdir"
11 mar -x "$1"
12 mv updatev2.manifest updatev2.manifest.bz2
13 bzip2 -d updatev2.manifest.bz2
14 cat updatev2.manifest