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.
13 lines
341 B
13 lines
341 B
#!/bin/sh -e
|
|
|
|
# SPDX-FileCopyrightText: Copyright 2025 crueter
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
# Replace a specified package with a modified json.
|
|
|
|
FILE=$(echo "$CPMFILES" | xargs grep -l "\"$1\"")
|
|
|
|
jq --indent 4 --argjson repl "$2" ".\"$1\" *= \$repl" "$FILE" >"$FILE".new
|
|
mv "$FILE".new "$FILE"
|
|
|
|
echo "-- * -- Updated $FILE"
|