9 lines
239 B
Scheme
Executable file
9 lines
239 B
Scheme
Executable file
#!/usr/bin/env sh
|
|
# -*- mode: scheme; -*-
|
|
IFS=" "
|
|
exec scsh -e main -s "$0" "$@"
|
|
!#
|
|
(define (main args)
|
|
(run (git clone --depth 1 https://code.ryuslash.org/ryuslash/laminar-config.git))
|
|
(with-cwd "laminar-config"
|
|
(run (makepkg))))
|