Differences From Artifact [3dc81017e7]:
- Executable file install.sh — part of check-in [26c340d29e] at 2019-08-19 04:51:01 on branch trunk — begin move away from legacy build system (user: lexi, size: 100) [annotate] [blame] [check-ins using]
To Artifact [b7dc8d033f]:
- Executable file install.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: 105) [annotate] [blame] [check-ins using]
1 2 3 4 |
#!/usr/bin/env bash
. global/common.sh
say "this component of the build system does not yet exist"
|
| |
1 2 3 4 |
#!/usr/bin/env bash
source global/common.sh
say "this component of the build system does not yet exist"
|