arch-pkgbuilder/models/custom/plugin
2023-01-13 23:04:14 +01:00

25 lines
261 B
Bash

#!/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
}