We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e8816a commit 71b3940Copy full SHA for 71b3940
src/ugrd/base/checks.py
@@ -1,13 +1,14 @@
1
-__version__ = '0.2.0'
+__version__ = '0.2.1'
2
3
from zenlib.util import contains
4
5
6
@contains('check_included_funcs', 'Skipping included funcs check', log_level=30)
7
def check_included_funcs(self):
8
+ """ Ensures required functions are included in the build dir. """
9
bash_func_names = [func + '() {\n' for func in self.included_functions]
10
_check_in_file(self, '/etc/profile', bash_func_names)
- return "Included functions check passed"
11
+ return "All functions found in the build dir."
12
13
14
@contains('check_in_file', 'Skipping in file check')
0 commit comments