diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-04 21:12:24 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-04 21:12:27 +0100 |
commit | 2400153fa487978be5622979dcce018b84050f04 (patch) | |
tree | 2486b8b171dd4821dcf5403dd7fed3ff5bcb9ccd /Makefile | |
parent | README: update (diff) | |
download | config-links-2400153fa487978be5622979dcce018b84050f04.tar.gz config-links-2400153fa487978be5622979dcce018b84050f04.zip |
Makefile: fix macOS builds
I don't know why, but `source` on macOS want's to source
/usr/bin/pkgbuild???
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ build: .PHONY: commit commit: git add .SRCINFO - source PKGBUILD && git commit -am "aur: $$pkgver-$$pkgrel" + source ./PKGBUILD && git commit -am "aur: $$pkgver-$$pkgrel" .PHONY: push push: |