summaryrefslogtreecommitdiffstats
path: root/legacy-scripts/install-clients-deps.sh
diff options
context:
space:
mode:
Diffstat (limited to 'legacy-scripts/install-clients-deps.sh')
-rwxr-xr-xlegacy-scripts/install-clients-deps.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/legacy-scripts/install-clients-deps.sh b/legacy-scripts/install-clients-deps.sh
deleted file mode 100755
index 5c31eb7..0000000
--- a/legacy-scripts/install-clients-deps.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-
-# Defaults
-TARGET=16
-ARCH=x86_64
-
-while getopts i:j: opt
-do
- case $opt in
- i) TARGET="$OPTARG";;
- j) ARCH="$OPTARG";;
- ?) printf "Usage: %s: [-i dist] [-j arch]\n" $0
- exit 2;;
- esac
-done
-
-export dist=${TARGET}
-export arch=${ARCH}
-
-cc="crypto-utils curl xulrunner";
-
-for c in $cc; do
- pushd ${c}
- fedpkg clean
- fedpkg srpm
- mock -r fedora-${dist}-${arch} --copyin ${c}-*.src.rpm /tmp
- mock -r fedora-${dist}-${arch} --installdeps ${c}-*.src.rpm
- popd
-done
-
-