arch-pkgbuilder/models/custom/plugin

25 lines
261 B
Plaintext
Raw Normal View History

2023-01-13 22:04:14 +00:00
#!/bin/bash
custom_plugin_isupdatable() {
return 1
}
custom_plugin_isbumpable() {
return 1
}
custom_plugin_getpkgfiles() {
return 1
}
custom_plugin_bump() {
return 1
}
custom_plugin_getlatestversion() {
return 1
}
custom_plugin_update() {
return 1
}