mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-15 22:43:02 +01:00
8 lines
131 B
Racket
8 lines
131 B
Racket
#lang racket
|
|
(require "../common.rkt")
|
|
(provide run)
|
|
|
|
(define (run)
|
|
(rm "cgout")
|
|
(cmd "confgen" "confgen.lua" "cgout")
|
|
null)
|