Skip to content

Commit 2c2b79d

Browse files
committed
Fix debian again
1 parent 51b6e62 commit 2c2b79d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
run: |
4242
sudo apt-get install -y libcurl4-openssl-dev
4343
sudo /usr/bin/ruby3.2 /usr/bin/gem install rack
44+
ls /etc
4445
- name: Build Binary
4546
run: make build
4647
- name: Upload release assets

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ NGINX_V := 1.26.2
44
LIBRE_V := 4.0.0
55
PASSENGER_V := 6.0.26
66
ROOT_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
7-
HOST_OS := $(shell if [ -f /etc/lsb-release ]; then echo debian; elif [ -f /etc/redhat-release ]; then echo fedora; else echo unknown; fi)
7+
HOST_OS := $(shell if [ -f /etc/redhat-release ]; then echo fedora; else echo debian; fi)
88
DOWNLOAD_V ?= "" # option for install with prebuilt GitHub version
99

1010
NGINX_PASSENGER_MODULES := --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_gzip_static_module --with-http_stub_status_module --with-http_addition_module --add-module='$(ROOT_DIR)passenger/src/nginx_module'

0 commit comments

Comments
 (0)