mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-05 23:29:27 +01:00
9 lines
155 B
Racket
9 lines
155 B
Racket
#lang racket
|
|
(require "../common.rkt")
|
|
(provide run)
|
|
|
|
(define (run)
|
|
(rm "cgout")
|
|
(cmd "confgen" "confgen.lua" "cgout")
|
|
(generate-cgopt-json)
|
|
null)
|