https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 107a08b6e771bddd407f5957720689797dd7f9eb authored by Eitan Isaacson on 23 October 2014, 16:09:00 UTC
Bug 1085586 - Remove screen reader from version 1.4. r=fabrice, a=bajaj
Tip revision: 107a08b
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