Swap shebang with set -e
This commit is contained in:
parent
f2d3e7bc5c
commit
5e2171906b
12 changed files with 22 additions and 12 deletions
|
@ -4,7 +4,7 @@ srczap manages a local copy of the
|
||||||
[HardenedBSD source tree](https://git.hardenedbsd.org/hardenedbsd/HardenedBSD).
|
[HardenedBSD source tree](https://git.hardenedbsd.org/hardenedbsd/HardenedBSD).
|
||||||
The copy of the source tree is maintained by members of
|
The copy of the source tree is maintained by members of
|
||||||
the `_srczap` group, and a copy of the source tree
|
the `_srczap` group, and a copy of the source tree
|
||||||
can be installed to `/usr/src/` by root.
|
can be installed into `/usr/src/` by root.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
##
|
##
|
||||||
# variables
|
# variables
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
##
|
##
|
||||||
# variables
|
# variables
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
##
|
##
|
||||||
# variables
|
# variables
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
##
|
##
|
||||||
# variables
|
# variables
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
##
|
##
|
||||||
# variables
|
# variables
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
group="_srczap"
|
group="_srczap"
|
||||||
if id -Gn | \
|
if id -Gn | \
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
##
|
##
|
||||||
# variables
|
# variables
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
##
|
##
|
||||||
# variables
|
# variables
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
##
|
##
|
||||||
# variables
|
# variables
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
##
|
##
|
||||||
# variables
|
# variables
|
||||||
|
|
|
@ -18,7 +18,7 @@ srczap erase
|
||||||
manages a copy of the HardenedBSD source tree.
|
manages a copy of the HardenedBSD source tree.
|
||||||
The copy of the source tree is maintained by members of
|
The copy of the source tree is maintained by members of
|
||||||
the '_srczap' group, and a copy of the source tree
|
the '_srczap' group, and a copy of the source tree
|
||||||
can be installed to /usr/src/ by root.
|
can be installed into /usr/src/ by root.
|
||||||
.Sh EXAMPLES
|
.Sh EXAMPLES
|
||||||
.sp
|
.sp
|
||||||
.sp
|
.sp
|
||||||
|
|
Loading…
Reference in a new issue