From 4eac50fda480d9f8032f584886bd4f702cd27b8e Mon Sep 17 00:00:00 2001 From: Macpie Date: Tue, 14 May 2024 11:11:25 -0700 Subject: [PATCH] Add some log line --- .github/scripts/make_debian.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/scripts/make_debian.sh b/.github/scripts/make_debian.sh index 10603f900..617988ad6 100644 --- a/.github/scripts/make_debian.sh +++ b/.github/scripts/make_debian.sh @@ -99,14 +99,16 @@ run_fpm() sudo apt update sudo apt install --yes ruby sudo gem install fpm -v 1.14.2 # current as of 2022-11-08 +echo "ruby deps installed" for config_path in $( find . -name 'settings-template.toml' ) do oracle=$(echo $config_path | sed -E 's!\./([^/]+)/.+$!\1!' | sed -E 's!_!-!g') - + write_unit_template $oracle write_prepost_template $oracle run_fpm $oracle $config_path $VERSION + echo "$oracle done" done for deb in /tmp/*.deb