Skip to content

Commit 311ec36

Browse files
committed
Update comments wrt new script name
1 parent 0e0726a commit 311ec36

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

dev/mk-src-tgz.sh

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -eu
33

4-
# MK UPSTREAM TGZ
4+
# MK SRC TGZ
55
# For Debian package or Spack: Make the upstream or source TGZ
66
# Used internally by Makefiles for Debian
77
# Used by dev/build-spacks.sh
@@ -10,16 +10,16 @@ set -eu
1010

1111
if [ ${#} != 5 ]
1212
then
13-
echo "mk-upstream-tgz: usage: PKG_TYPE TGZ NAME VERSION FILE_LIST"
14-
echo "mk-upstream-tgz: given: $*"
13+
echo "mk-src-tgz: usage: PKG_TYPE TGZ NAME VERSION FILE_LIST"
14+
echo "mk-src-tgz: given: $*"
1515
exit 1
1616
fi
1717

18-
PKG_TYPE=$1 # Package type: src or deb-dev or deb-bin or spack
19-
TGZ=$2 # Output TGZ file
20-
NAME=$3 # TGZ name
21-
VERSION=$4 # TGZ version
22-
FILE_LIST=$5 # Program that produces list of files to include
18+
PKG_TYPE=$1 # Package type: src or deb-dev or deb-bin or spack
19+
TGZ=$2 # Output TGZ file
20+
NAME=$3 # TGZ name
21+
VERSION=$4 # TGZ version
22+
FILE_LIST=$5 # Program that produces list of files to include
2323

2424
echo "Building upstream TGZ for $NAME ..."
2525

0 commit comments

Comments
 (0)