ropam: rename vendors to repos
This commit is contained in:
22
ropam/repo/remove.c
Normal file
22
ropam/repo/remove.c
Normal file
@@ -0,0 +1,22 @@
|
||||
#include "../commands.h"
|
||||
|
||||
#include <blue/cmd.h>
|
||||
|
||||
static int repo_remove(
|
||||
const b_command *self,
|
||||
const b_arglist *opt,
|
||||
const b_array *args)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
B_COMMAND(CMD_REPO_REMOVE, CMD_REPO)
|
||||
{
|
||||
B_COMMAND_NAME("remove");
|
||||
B_COMMAND_SHORT_NAME('R');
|
||||
B_COMMAND_DESC("remove a package repository from the system.");
|
||||
B_COMMAND_FLAGS(B_COMMAND_SHOW_HELP_BY_DEFAULT);
|
||||
B_COMMAND_FUNCTION(repo_remove);
|
||||
|
||||
B_COMMAND_HELP_OPTION();
|
||||
}
|
||||
Reference in New Issue
Block a user