Introduce a scripts/ folder
[termux-packages] / check-versions.sh
diff --git a/check-versions.sh b/check-versions.sh
deleted file mode 100755 (executable)
index 9a4e798..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env bash
-# check-versions.sh - script to open packages in a browser for checking their versions
-
-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`    
-       . $path/build.sh
-       echo -n "$pkg - $TERMUX_PKG_VERSION - press Return to check homepage"
-       read
-       $OPEN $TERMUX_PKG_HOMEPAGE
-)
-done