mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
10 lines
219 B
Text
10 lines
219 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# As of 0.13, xmonad --recompile will look for a custom build script.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
stack build :my-xmonad --verbosity error
|
||
|
stack install :my-xmonad --local-bin-path bin/ --verbosity error
|
||
|
mv bin/my-xmonad "$1"
|