https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 8d05c2e5733f6de5384565a57c5f485e27ef1b57 authored by seabld on 24 October 2012, 05:51:02 UTC
Added tag SEAMONKEY_2_14b2_RELEASE for changeset FIREFOX_17_0b3_BUILD1. CLOSED TREE a=release
Tip revision: 8d05c2e
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