diff options
| -rw-r--r-- | README.md | 5 | ||||
| -rwxr-xr-x | mkwheels | 1 |
2 files changed, 5 insertions, 1 deletions
@@ -15,7 +15,10 @@ mkwheels <pkg> <ver> [epoch] - `OUTPUT` env var overrides the output directory (default: current dir). Outputs `<pkg>-wheels-<ver>.tar.gz` and `requirements.txt` (pinned + hashed). -Prints the md5sum and the resolved epoch. +Prints the md5sum and the resolved epoch. The `requirements.txt` is an audit +record of the resolved versions, not the install input: the SlackBuild installs +straight from the wheel files (`--find-links`), it does not re-resolve the +lockfile. ## Requirements @@ -14,6 +14,7 @@ # You should have received a copy of the GNU General Public License along with # this program; if not, see <https://www.gnu.org/licenses/>. set -eu +set -o pipefail # so a tar/find failure can't be masked by gzip succeeding usage() { cat <<EOF |
