source:
code/trunk/cmd/aya/gcss_stub.go
Last change on this file was 87, checked in by , 14 months ago | |
---|---|
File size: 173 bytes |
Line | |
---|---|
1 | //go:build nogcss |
2 | package main |
3 | |
4 | import ( |
5 | "errors" |
6 | "io" |
7 | ) |
8 | |
9 | func buildGCSS(path string, w io.Writer) error { |
10 | return errors.New("GCSS support was disabled at build time") |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.