forked from colonelpanic/dotfiles
10 lines
213 B
Bash
Executable File
10 lines
213 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SRC_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
EXE_NAME=imalison-xmonad
|
|
output_file=$1; shift
|
|
|
|
stack install
|
|
cp -uf $(stack path --local-install-root)/bin/$EXE_NAME $output_file
|