diff options
author | Jonathan Bauer | 2013-07-09 18:14:49 +0200 |
---|---|---|
committer | Jonathan Bauer | 2013-07-09 18:14:49 +0200 |
commit | 6f62027bf04d63577f01828fc8914ab05de260df (patch) | |
tree | 264483e222769670036a55845b7eecf91a040f7c /helper | |
parent | [binutil] added a non-critical TODO (diff) | |
download | tm-scripts-6f62027bf04d63577f01828fc8914ab05de260df.tar.gz tm-scripts-6f62027bf04d63577f01828fc8914ab05de260df.tar.xz tm-scripts-6f62027bf04d63577f01828fc8914ab05de260df.zip |
[fileutil] fix typo
Diffstat (limited to 'helper')
-rw-r--r-- | helper/fileutil.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helper/fileutil.inc b/helper/fileutil.inc index 33b3bd65..4b9a2b4d 100644 --- a/helper/fileutil.inc +++ b/helper/fileutil.inc @@ -86,10 +86,10 @@ install_packages() { local PACKAGE_LIST="$@" if [ "x$PACKET_MANAGER" == "xapt" ]; then apt-get install -y ${PACKAGE_LIST} || \ - pwarning "install_package: apt-get failed with '$IRET' for package '$PACKAGE_LIST'" + pwarning "install_packages: apt-get failed with '$IRET' for package '$PACKAGE_LIST'" elif [ "x$PACKET_MANAGER" == "xzypper" ]; then zypper --no-refresh --non-interactive install ${PACKAGE_LIST} || \ - pwarning "install_package: zypper failed with '$IRET' for package '$PACKAGE_LIST'" + pwarning "install_packages: zypper failed with '$IRET' for package '$PACKAGE_LIST'" else pinfo "No packet manager determined, this should not happen!" fi |