This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 61fe857f Why is the PATH missing some parts?
61fe857f is described below
commit 61fe857f4530525520c78ce903be9308c09cce36
Author: Sebb <[email protected]>
AuthorDate: Thu Apr 7 14:10:28 2022 +0100
Why is the PATH missing some parts?
---
.github/workflows/unittestagenda.yml | 4 ++++
www/board/agenda/Rakefile | 4 ++++
2 files changed, 8 insertions(+)
diff --git a/.github/workflows/unittestagenda.yml
b/.github/workflows/unittestagenda.yml
index 8640b4b1..b21b1c0e 100644
--- a/.github/workflows/unittestagenda.yml
+++ b/.github/workflows/unittestagenda.yml
@@ -49,5 +49,9 @@ jobs:
npm -v || true
node -v || true
echo '================'
+ bundle exec env | grep '^PATH'
+ echo '================'
cd www/board/agenda
+ bundle exec path
+ echo '================'
SKIP_NAVIGATION=1 bundle exec rake
diff --git a/www/board/agenda/Rakefile b/www/board/agenda/Rakefile
index c76a6d29..186a5b33 100644
--- a/www/board/agenda/Rakefile
+++ b/www/board/agenda/Rakefile
@@ -15,6 +15,10 @@ task :default => :spec
task :spec => 'test:setup'
task :test => :spec
+task :path do
+ puts ENV['PATH'] # TEMP CHECK
+end
+
# setup authentication
task :auth do
require 'etc'