aboutsummaryrefslogtreecommitdiff
blob: 70153ebed78851a4bf268848f87104e7979dc4cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0"?>
<guide self="function-reference/error-functions/">
<chapter>
<title>Error Functions Reference</title>
<body>

<p>
The following functions are provided by the package manager for error handling.
</p>

<table>
  <tr>
    <th>Function</th>
    <th>Details</th>
  </tr>
  <tr>
    <ti><c>die</c></ti>
    <ti>
      <p>
      Displays an error message provided in its argument, and aborts the build
      process.
      </p>
      <p>
      In EAPI 6 and later, <c>die</c> can be called under the <c>nonfatal</c>
      command and with the <c>-n</c> option, in which case it will not abort
      the build process, but return with non-zero status.
      </p>
    </ti>
  </tr>
  <tr>
    <ti><c>assert</c></ti>
    <ti>
      Checks the value of the <c>PIPESTATUS</c> array, and calls <c>die</c>
      if any of its component is non-zero (which indicates failure of the
      preceding command pipeline).
    </ti>
  </tr>
  <tr>
    <ti><c>nonfatal</c></ti>
    <ti>
      Takes another command as its argument and executes it. If the command
      fails and would normally die, it returns with non-zero status instead
      when called under <c>nonfatal</c>.
    </ti>
  </tr>
</table>

</body>
</chapter>
</guide>