diff options
author | Christoph Rüßler <christoph.ruessler@mailbox.org> | 2020-10-10 17:52:11 +0200 |
---|---|---|
committer | Stephan Dilly <dilly.stephan@gmail.com> | 2020-10-10 23:31:40 +0200 |
commit | 04bd45e6418db891873962fc700c297973bd8c4e (patch) | |
tree | 2bb92e0a2d03835a32562d037747d6646be99a15 /Makefile | |
parent | ea8b32d6239dd438ed8976abdc42d68de3f7a4eb (diff) |
Use helper binary for clipboard access (#262)
Use `clip` on Windows, `pbcopy` on MacOX, `xclip` on Linux.
- Remove dependency on `clipboard`
- Remove feature `clipboard`
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -26,13 +26,13 @@ release-linux-musl: build-linux-musl-release tar -C ./target/x86_64-unknown-linux-musl/release/ -czvf ./release/gitui-linux-musl.tar.gz ./gitui build-linux-musl-debug: - cargo build --target=x86_64-unknown-linux-musl --no-default-features + cargo build --target=x86_64-unknown-linux-musl build-linux-musl-release: - cargo build --release --target=x86_64-unknown-linux-musl --no-default-features + cargo build --release --target=x86_64-unknown-linux-musl test-linux-musl: - cargo test --workspace --target=x86_64-unknown-linux-musl --no-default-features + cargo test --workspace --target=x86_64-unknown-linux-musl test: cargo test --workspace |