https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7b4407f0efa26857511e37e3acadace05b645f16 authored by ffxbld on 06 October 2011, 01:00:13 UTC
Added tag FENNEC_8_0b2_BUILD1 for changeset 747c148bea02. CLOSED TREE a=release
Tip revision: 7b4407f
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 update.manifest update.manifest.bz2
bzip2 -d update.manifest.bz2
cat update.manifest
back to top