You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
384 B
16 lines
384 B
#!/bin/sh -e
|
|
|
|
# SPDX-FileCopyrightText: Copyright 2025 crueter
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# updates CPMUtil, its docs, and related tools from the latest release
|
|
|
|
if command -v zstd > /dev/null; then
|
|
EXT=tar.zst
|
|
else
|
|
EXT=tar.gz
|
|
fi
|
|
|
|
wget "https://git.crueter.xyz/CMake/CPMUtil/releases/download/continuous/CPMUtil.$EXT"
|
|
tar xf "CPMUtil.$EXT"
|
|
rm "CPMUtil.$EXT"
|