Skip to content
Snippets Groups Projects
Verified Commit ea309f68 authored by Karel Koci's avatar Karel Koci :metal:
Browse files

compile_pkgs: move set -e from hashbang

Setting -e in hashbang is not a good idea as users might just run it by
some other interpreter and that way removing (without noticing it) that
option.
parent 76dc51bb
Branches
Tags
2 merge requests!123Turris OS 5.0 (HBK),!116compile_pkgs: verify generated config against our preferences
#!/bin/bash -e
#!/bin/bash
# OpenWRT compilation script
# (C) 2018-2020 CZ.NIC, z.s.p.o.
#
......@@ -14,6 +14,7 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
set -e
shopt -s nullglob
# Step list that is run when no commands are specified
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment