We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20c81ef commit 48e3ad8Copy full SHA for 48e3ad8
.gitignore
@@ -1,4 +1,2 @@
1
.build
2
-Packages
3
-/reminders
4
reminders.tar.gz
Makefile
@@ -10,10 +10,11 @@ clean:
10
swift package clean
11
12
release:
13
- swift build --configuration release
+ swift build --configuration release -Xswiftc -warnings-as-errors
14
15
package: release
16
- tar -pvczf $(ARCHIVE) -C zsh _reminders -C ../$(RELEASE_BUILD) $(EXECUTABLE)
+ $(RELEASE_BUILD)/$(EXECUTABLE) --generate-completion-script zsh > _reminders
17
+ tar -pvczf $(ARCHIVE) _reminders -C $(RELEASE_BUILD) $(EXECUTABLE)
18
tar -zxvf $(ARCHIVE)
19
@shasum -a 256 $(ARCHIVE)
20
@shasum -a 256 $(EXECUTABLE)
zsh/_reminders
0 commit comments