Differences From Artifact [a95857b352]:
- Executable file global/build-id.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: 609) [annotate] [blame] [check-ins using]
To Artifact [45c1076b3a]:
- Executable file global/build-id.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: 616) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 |
#!/usr/bin/env sh
. global/common.sh
origin=1566169297
now=$(date +%s)
delta=$(expr $now - $origin)
if test "$id_mode" = "private"; then
|
| | |
1 2 3 4 5 6 7 8 9 |
#!/usr/bin/env bash source global/common.sh origin=1566169297 now=$(date +%s) delta=$(expr $now - $origin) if test "$id_mode" = "private"; then |