pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/pkgtools/pbulk/files/pbulk/scripts



Module Name:    pkgsrc
Committed By:   riastradh
Date:           Sat Apr  4 15:17:36 UTC 2020

Modified Files:
        pkgsrc/pkgtools/pbulk/files/pbulk/scripts: client-prepare

Log Message:
Fix order of assignments so we set path as intended, not to empty.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
    pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare
diff -u pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare:1.3 pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare:1.4
--- pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare:1.3        Sun Dec 18 22:59:35 2016
+++ pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare    Sat Apr  4 15:17:36 2020
@@ -1,5 +1,5 @@
 #!@SH@
-# $NetBSD: client-prepare,v 1.3 2016/12/18 22:59:35 joerg Exp $
+# $NetBSD: client-prepare,v 1.4 2020/04/04 15:17:36 riastradh Exp $
 
 . @PBULK_CONFIG@
 
@@ -27,11 +27,11 @@ for client in ${scan_clients} ${build_cl
 done
 
 for client in ${unique_clients}; do
-       case ${client} in 
+       case ${client} in
        /*)
+               path=${client}
                port=
                client=
-               path=${client}
                ;;
        *:*)
                port="-p ${client##*:}"



Home | Main Index | Thread Index | Old Index