Improve check-versions.sh
authorFredrik Fornwall <fredrik@fornwall.net>
Tue, 7 Nov 2017 03:57:55 +0000 (04:57 +0100)
committerFredrik Fornwall <fredrik@fornwall.net>
Tue, 7 Nov 2017 03:58:09 +0000 (04:58 +0100)
scripts/check-versions.sh

index 9a4e798..bdc1d4e 100755 (executable)
@@ -4,13 +4,18 @@
 OPEN=xdg-open
 if [ `uname` = Darwin ]; then OPEN=open; fi
 
-# Run each package in separate process since we include their environment variables:
-for path in packages/*; do
-(
-       pkg=`basename $path`    
+check_package() { # path
+       local path=$1
+       local pkg=`basename $path`
        . $path/build.sh
-       echo -n "$pkg - $TERMUX_PKG_VERSION - press Return to check homepage"
+       echo -n "$pkg - $TERMUX_PKG_VERSION"
        read
        $OPEN $TERMUX_PKG_HOMEPAGE
+}
+
+# Run each package in separate process since we include their environment variables:
+for path in packages/*; do
+(
+       check_package $path
 )
 done