diff options
| author | 2022-05-02 14:05:18 +0100 | |
|---|---|---|
| committer | 2022-05-02 15:05:18 +0200 | |
| commit | b56dae8120d43b9acd3d3ed4d40100ffab7b972a (patch) | |
| tree | d55d30589d8a8499ed3d5eecba163abc9fa78c27 /vendor/github.com/tdewolff/minify/v2/Makefile | |
| parent | add extra indexes as a migration (#527) (diff) | |
| download | gotosocial-b56dae8120d43b9acd3d3ed4d40100ffab7b972a.tar.xz | |
[chore] Update all but bun libraries (#526)
* update all but bun libraries
Signed-off-by: kim <grufwub@gmail.com>
* remove my personal build script changes
Signed-off-by: kim <grufwub@gmail.com>
Diffstat (limited to 'vendor/github.com/tdewolff/minify/v2/Makefile')
| -rw-r--r-- | vendor/github.com/tdewolff/minify/v2/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/github.com/tdewolff/minify/v2/Makefile b/vendor/github.com/tdewolff/minify/v2/Makefile index 22e448a3c..1c908800e 100644 --- a/vendor/github.com/tdewolff/minify/v2/Makefile +++ b/vendor/github.com/tdewolff/minify/v2/Makefile @@ -1,3 +1,4 @@ +SHELL=/usr/bin/env bash NAME=minify CMD=./cmd/minify TARGETS=linux_amd64 darwin_amd64 freebsd_amd64 netbsd_amd64 openbsd_amd64 windows_amd64 @@ -17,8 +18,9 @@ release: if [ "${.SHELLSTATUS}" -eq 0 ]; then \ echo "Releasing ${VERSION}"; \ else \ - echo "WARNING: commit is not tagged with a version"; \ + echo "ERROR: commit is not tagged with a version"; \ echo ""; \ + exit 1; \ fi rm -rf dist mkdir -p dist |
