2017-08-17 15:02:52 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
SRC_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
|
|
|
output_file=$1; shift
|
|
|
|
|
2019-06-06 00:34:29 -07:00
|
|
|
cd "$SRC_DIR"
|
|
|
|
exe_location="$SRC_DIR/result/bin/imalison-xmonad"
|
|
|
|
nix-build
|
|
|
|
echo "$exe_location" "$output_file" > did_build
|
|
|
|
cp -f "$exe_location" "$output_file"
|