File: fix-modtime.pe

package info (click to toggle)
fonts-junicode 2.211%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 104,448 kB
  • sloc: python: 304; sh: 236; xml: 18; makefile: 16
file content (13 lines) | stat: -rwxr-xr-x 173 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
exit 0

#!/usr/bin/fontforge

i=1
while (i < $argc)
  Open($argv[i])
  SetModificationTime(GetEnv("BUILD_DATE"))
  Generate($argv[i])
  Close()
  i += 1
endloop