diff options
author | Christian Pointner <equinox@helsinki.at> | 2020-03-21 21:06:22 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2020-03-21 21:06:22 (GMT) |
commit | 3f348dcff09c8ec27227ef302a414166b4db0052 (patch) | |
tree | 7a13fb17def136b744a1f2c24bab97d4fddf1646 /Makefile | |
parent | 24c2de02d2f59eeda1d9eae767996ce1e3eb24e9 (diff) |
fix sha256sum handling
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -19,11 +19,11 @@ studio-link-onair.lv2: v$(VERSION)/studio-link-plugin-onair.zip v$(VERSION)/%: @echo "fetching file: $(DOWNLOAD_BASEURL)/v$(VERSION)-stable/linux/$(notdir $@)" @curl -L -f -s -S "$(DOWNLOAD_BASEURL)/v$(VERSION)-stable/linux/$(notdir $@)" > "$@" - @cd v$(VERSION) && sha256sum -c --ignore-missing sha256.sum + @cd v$(VERSION) && sha256sum -c "$(notdir $@).sha256" clean: - rm -f "v$(VERSION)/*.tar.gz" - rm -f "v$(VERSION)/*.zip" + rm -f v$(VERSION)/*.tar.gz + rm -f v$(VERSION)/*.zip rm -f studio-link-standalone rm -rf studio-link.lv2 rm -rf studio-link-onair.lv2 |