Skip to content

Commit

Permalink
Update comments wrt new script name
Browse files Browse the repository at this point in the history
  • Loading branch information
j-woz committed Oct 16, 2018
1 parent 0e0726a commit 311ec36
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions dev/mk-src-tgz.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
set -eu

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

if [ ${#} != 5 ]
then
echo "mk-upstream-tgz: usage: PKG_TYPE TGZ NAME VERSION FILE_LIST"
echo "mk-upstream-tgz: given: $*"
echo "mk-src-tgz: usage: PKG_TYPE TGZ NAME VERSION FILE_LIST"
echo "mk-src-tgz: given: $*"
exit 1
fi

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

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

Expand Down

0 comments on commit 311ec36

Please sign in to comment.