mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-28 02:15:07 +00:00
They are hosted right alongside the binaries so I don't think they are providing any real security benifit. Plus none of the other artifacts have checksums.
14 lines
188 B
Bash
Executable File
14 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
set -eux
|
|
|
|
build=$1
|
|
suffix=$2
|
|
|
|
cd "$build"
|
|
|
|
strip muon
|
|
mv muon "muon-$suffix"
|