mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
15 lines
285 B
Bash
Executable File
15 lines
285 B
Bash
Executable File
#!/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
|