Differences From Artifact [ea0b6d880a]:
- Executable file global/build-manpage.sh — part of check-in [b590aba21d] at 2019-08-21 01:20:41 on branch trunk — rename $out build var to $to for nixos compat; refactor announce command to choose a color automatically instead of forcing it to be specified on every command line (user: lexi, size: 1854) [annotate] [blame] [check-ins using]
To Artifact [d03c3443d7]:
- Executable file global/build-manpage.sh — part of check-in [34059b4bf6] at 2019-08-21 23:35:09 on branch trunk — replace `.` with `source` in shell scripts for compatibility; change `sh` shebangs to use bash instead (user: lexi, size: 1861) [annotate] [blame] [check-ins using]
1 -#!/usr/bin/env sh 1 +#!/usr/bin/env bash 2 2 (test -d global && test -f build.sh) || { 3 3 echo >&2 "($0) run [1m$me[21m from root of [1mlibk[21m source directory" 4 4 exit 1 5 5 } 6 6 7 -. global/common.sh 7 +source global/common.sh 8 8 reqpack cmark "generate documentation" 9 9 check gen "a directory for generated build dependencies" 10 10 11 11 file="$1" 12 12 filename="$(basename "$file")" 13 13 stem=${filename%%.md} 14 14