mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 03:14:36 +00:00
15 lines
231 B
Bash
Executable File
15 lines
231 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"
|
|
md5sum "muon-$suffix" > "muon-$suffix.md5"
|