diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-04 22:38:29 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-04 22:38:29 +0100 |
commit | 127fc2659a9375698c823d6df040505c1fcfa908 (patch) | |
tree | f8a4fe022ec7c2ab46753667b77ecdede9343201 | |
parent | README: update (diff) | |
download | linux-status-127fc2659a9375698c823d6df040505c1fcfa908.tar.gz linux-status-127fc2659a9375698c823d6df040505c1fcfa908.zip |
Makefile: fix macOS builds
I don't know why, but `source` on macOS wants to source
/usr/bin/pkgbuild???
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ build: .PHONY: commit commit: - source PKGBUILD && git commit -am "aur: $$pkgver-$$pkgrel" + source ./PKGBUILD && git commit -am "aur: $$pkgver-$$pkgrel" .PHONY: push push: |