mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
9 lines
219 B
Bash
Executable file
9 lines
219 B
Bash
Executable file
#!/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"
|