diff options
author | dancer <dancer> | 2001-08-27 11:37:42 +0000 |
---|---|---|
committer | dancer <dancer> | 2001-08-27 11:37:42 +0000 |
commit | 0b660f6719184fed8eb5cfcf25f910210fe31b5a (patch) | |
tree | a0c763ee9d2588092fce2a2e8526eeb7d710b6c7 /pbuilder-checkparams | |
parent | 296a5a338a397c6cf8c77a813dc29bd1b7ce8b19 (diff) | |
download | pbuilder-0b660f6719184fed8eb5cfcf25f910210fe31b5a.tar pbuilder-0b660f6719184fed8eb5cfcf25f910210fe31b5a.tar.gz |
added buildresult feature and fixed the readlink typo
Diffstat (limited to 'pbuilder-checkparams')
-rwxr-xr-x | pbuilder-checkparams | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pbuilder-checkparams b/pbuilder-checkparams index 19f79d8..6480ac6 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -6,7 +6,7 @@ while [ -n $1 ]; do case "$1" in --basetgz) - BASETGZ=$(realink -f "$2"); + BASETGZ=$(readlink -f "$2"); shift; shift; ;; --buildplace) @@ -25,6 +25,10 @@ while [ -n $1 ]; do DISTRIBUTION="$2"; shift; shift; ;; + --buildresult) + BUILDRESULT=$(readlink -f "$2"); + shift; shift; + ;; --help) cat <<EOF Command Line Options: @@ -33,6 +37,7 @@ Command Line Options: --mirror [mirror location] --http-proxy [proxy] --distribution [distribution(woody/sid)] + --buildresult [location-to-copy-build-result] EOF exit 1; ;; |