mirror of
https://github.com/dnote/dnote
synced 2026-03-15 15:05:51 +01:00
7 lines
228 B
Bash
Executable file
7 lines
228 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# dev.sh builds a new binary and replaces the old one in the PATH with it
|
|
|
|
rm "$(which dnote)" $GOPATH/bin/cli
|
|
make build-snapshot
|
|
ln -s $GOPATH/src/github.com/dnote/cli/dist/darwin_amd64/dnote /usr/local/bin/dnote
|