mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
The update_package command no longer works with the new genconfig design. For now, replace it with a message until its replacement has been merged. Signed-off-by: Andreas Gnau <andreas.gnau@iopsys.eu>
10 lines
309 B
Bash
Executable file
10 lines
309 B
Bash
Executable file
# Exported interface
|
|
update_package() {
|
|
echo "update_package is no longer supported." >&2
|
|
echo "Its replacement will come soon." >&2
|
|
echo >&2
|
|
echo "For now update references in profiles/include/*.yml and feeds.conf.io manually." >&2
|
|
return 1
|
|
}
|
|
|
|
register_command "update_package" "No longer used command"
|