We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c73c82 commit b751303Copy full SHA for b751303
.gitignore
@@ -4,6 +4,7 @@
4
/.crystal/
5
/.shards/
6
/dev/
7
+/bin/
8
9
# Libraries don't need dependency lock
10
# Dependencies will be locked in application that uses them
Makefile
@@ -0,0 +1,14 @@
1
+all:
2
+
3
+install: ../../bin/sentry
+../../bin/sentry: bin/sentry ../../bin
+ cp bin/sentry ../../bin/
+../../bin:
+ mkdir -p ../../bin
11
+bin/sentry:
12
+ shards build --release sentry
13
14
+.PHONY: all install bin/sentry
shard.yml
@@ -1,6 +1,13 @@
name: sentry
version: 0.3.1
+scripts:
+ postinstall: make install
+targets:
+ sentry:
+ main: src/sentry_cli.cr
authors:
- Sam Eaton <[email protected]>
crystal: 0.27.0
0 commit comments