mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 02:40:33 +09:00
14 lines
293 B
Bash
14 lines
293 B
Bash
#!/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
|