-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild
executable file
·23 lines (18 loc) · 957 Bytes
/
build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh -eu
################################################################################
# Edit this file and then rename it to ~/.xmonad/build
################################################################################
# The directory holding your source code and stack.yaml file:
SRC_DIR=~/Code/dotfiles/xmonad-personal
################################################################################
# The name of the executable produced by stack. This comes from the
# executable section of your Cabal file.
EXE_NAME=xmonad-personal-exe
################################################################################
# This script will be given a single argument, the path to the
# executable it should produce.
output_file=$1; shift
################################################################################
cd $SRC_DIR
~/.local/bin/stack build
cp -uf `~/.local/bin/stack path --dist-dir`/build/$EXE_NAME/$EXE_NAME $output_file