]> andersk Git - gssapi-openssh.git/commitdiff
Selectively look for packages in current directory or in ../packages-harvest.
authorcphillip <cphillip>
Tue, 24 Aug 2004 18:32:37 +0000 (18:32 +0000)
committercphillip <cphillip>
Tue, 24 Aug 2004 18:32:37 +0000 (18:32 +0000)
bundle/scripts/collate-packages

index 28e06adb4f79ce9aa116252998ed2244bbf1100c..07e66ed61b6c4a0dae939a53a72e841564c9ea70 100755 (executable)
@@ -7,5 +7,10 @@ if [ ! -e work/sources/ ]; then
     mkdir -p work/sources/
 fi
 
-cp ../packages-harvest/gsi_openssh-$VERSION-src.tar.gz ./work/sources/
-cp ../packages-harvest/gsi_openssh_setup-$VERSION-src.tar.gz ./work/sources/
+dir="."
+if [ -d ../packages-harvest/ ]; then
+  dir="../packages-harvest"
+fi
+
+cp $dir/gsi_openssh-$VERSION-src.tar.gz ./work/sources/
+cp $dir/gsi_openssh_setup-$VERSION-src.tar.gz ./work/sources/
This page took 0.047058 seconds and 5 git commands to generate.