https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 4c3929bd1491ab9855ba82ceb35cea902b3b5c5f authored by ffxbld on 09 January 2015, 04:20:05 UTC
Added FENNEC_35_0_RELEASE FENNEC_35_0_BUILD1 tag(s) for changeset dfd83036d713. DONTBUILD CLOSED TREE a=release
Tip revision: 4c3929b
catmanifest.sh
#!/bin/bash
# helper tool for testing.  Cats the manifest out of a mar file

mar="$1"
workdir="/tmp/catmanifest"

rm -rf "$workdir"
mkdir -p "$workdir"
cp "$1" "$workdir"
cd "$workdir"
mar -x "$1"
mv updatev2.manifest updatev2.manifest.bz2
bzip2 -d updatev2.manifest.bz2
cat updatev2.manifest
back to top