From: A. Gordon Date: Mon, 15 Sep 2014 18:48:23 +0000 (-0400) Subject: virt-what.in: remove bash-ism X-Git-Tag: 1.15~10 X-Git-Url: http://git.annexia.org/?p=virt-what.git;a=commitdiff_plain;h=6382ef1cb5b8c146bfd35912730dccd68ab4b71a virt-what.in: remove bash-ism Use '/bin/sh' instead of '/bin/bash', with POSIX-compatible function definitions. --- diff --git a/virt-what.in b/virt-what.in index c04203e..1532b90 100644 --- a/virt-what.in +++ b/virt-what.in @@ -1,4 +1,4 @@ -#!/bin/bash - +#!/bin/sh - # @configure_input@ # Copyright (C) 2008-2011 Red Hat Inc. # @@ -33,12 +33,12 @@ skip_qemu_kvm=false VERSION="@VERSION@" -function fail { +fail() { echo "virt-what: $1" >&2 exit 1 } -function usage { +usage() { echo "virt-what [options]" echo "Options:" echo " --help Display this help"