mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-12 06:30:38 +00:00
6 lines
274 B
Plaintext
6 lines
274 B
Plaintext
let key = get("https://ffmpeg.org/ffmpeg-devel.asc");
|
|
let dir = sub(`/[^/]+$`, "", __script_path);
|
|
|
|
open_file(`${dir}/ffmpeg-devel.asc`, "w").write(key);
|
|
sh(`gpg2 --import --import-options import-export,import-minimal ffmpeg-devel.asc > ./ffmpeg.keyring`, #{ "cwd": dir });
|