Differences From Artifact [0ffa5553a2]:
- Executable file global/common.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: 1656) [annotate] [blame] [check-ins using]
To Artifact [e60df5a627]:
- Executable file global/common.sh — part of check-in [14172a910a] at 2019-08-21 06:00:24 on branch trunk — move modules to a subdirectory in order to keep the directory tree organized and make room for OS-specific build files (user: lexi, size: 1649) [annotate] [blame] [check-ins using]
49 49 else 50 50 printf " [94;4m$a[m"; 51 51 fi 52 52 done 53 53 echo 54 54 } 55 55 else 56 - announce() { shift; echo " --> " $@; } 56 + announce() { echo " --> " $@; } 57 57 fi 58 58 59 59 # the following function is called to report a command invocation 60 60 # the person compiling the library. the first argument should be 61 61 # an ansi format string; this is used to color-code the tool being 62 62 # launched and thus should be different for each one. 63 63 64 64 report() { announce $@; $@; }