With this shell attribute, the script will abort if any of the executed commands exits with a non-zero status.
4 lines
57 B
Bash
Executable File
4 lines
57 B
Bash
Executable File
#!/bin/bash
|
|
### Setup Fedora ###
|
|
# Abort on errors
|
|
set -e |