diff options
| -rwxr-xr-x | liveusb/build.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/liveusb/build.sh b/liveusb/build.sh index ba3d3fe..850e002 100755 --- a/liveusb/build.sh +++ b/liveusb/build.sh @@ -119,6 +119,11 @@ if [[ ${arch} != x86_64 ]]; then echo "This script needs to be run on x86_64" _usage 1 fi +if [[ $(pacman -Q archiso) -ne 0 ]]; then + echo "This script requires archiso(-git) to be installed" + _usage 1 +fi + while getopts 'th' arg; do case "${arg}" in |
