52 |
show_help() { |
show_help() { |
53 |
cat <<EOF |
cat <<EOF |
54 |
Usage: |
Usage: |
55 |
$me [options] [directory] |
$me [options] <directory> |
56 |
|
|
57 |
Create a software distribution from a directory. |
Create a software distribution from a directory. |
58 |
|
|
80 |
given version argument. |
given version argument. |
81 |
-V, --verbose Enable verbose output. |
-V, --verbose Enable verbose output. |
82 |
|
|
83 |
Bug reports and questions should be sent to <[email protected]>. |
Bug reports and questions should be sent to <[email protected]>. |
84 |
EOF |
EOF |
85 |
} |
} |
86 |
|
|
302 |
echo "$me: preparing '$target' for packaging" |
echo "$me: preparing '$target' for packaging" |
303 |
|
|
304 |
tmpdir=$(mktemp -d) |
tmpdir=$(mktemp -d) |
305 |
rsync_tmpdir="$tmpdir/$output_basename" |
rsync_tmpdir="$tmpdir/${output_basename}-${archive_version}" |
306 |
|
|
307 |
mkdir $rsync_tmpdir |
mkdir $rsync_tmpdir |
308 |
|
|