From e1d9825475fb816e89d5fa5525b9ca86c8bfc944 Mon Sep 17 00:00:00 2001 From: Dmitry Smirnov Date: Sat, 1 Jun 2013 22:55:52 +1000 Subject: [PATCH] scripts: avoid bashism in xt_geoip_dl xt_geoip_dl is marked to use /bin/sh. As such, avoid bashisms. --- geoip/xt_geoip_dl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geoip/xt_geoip_dl b/geoip/xt_geoip_dl index c4a05a2..50d3806 100755 --- a/geoip/xt_geoip_dl +++ b/geoip/xt_geoip_dl @@ -1,6 +1,6 @@ #!/bin/sh -rm -f GeoIPv6.csv{,.gz} GeoIPCountryCSV.zip GeoIPCountryWhois.csv; +rm -f GeoIPv6.csv GeoIPv6.csv.gz GeoIPCountryCSV.zip GeoIPCountryWhois.csv; wget \ http://geolite.maxmind.com/download/geoip/database/GeoIPv6.csv.gz \ http://geolite.maxmind.com/download/geoip/database/GeoIPCountryCSV.zip;