Tools: add set -x to install-prereqs scripts

This commit is contained in:
Peter Barker 2016-11-03 22:09:41 +11:00 committed by Peter Barker
parent 30a2472b89
commit e8fc5b9552
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#!/bin/bash
set -e
set -x
command -v yaourt >/dev/null 2>&1 || { echo >&2 "Please install yaourt first. Aborting."; exit 1; }

View File

@ -1,5 +1,6 @@
#!/bin/bash
set -e
set -x
OPT="/opt"
BASE_PKGS="build-essential ccache g++ gawk git make wget"