sebbASF commented on issue #162: URL: https://github.com/apache/whimsy/issues/162#issuecomment-1133879021
The problem is that the Rakefile is expecting to find the config under /srv/whimsy/lib; however /srv/whimsy is only set up under docker. Can you please try editing Rakefile as follows? Thanks! --- a/Rakefile +++ b/Rakefile @@ -108,7 +108,7 @@ end # This requires Gems such as Wunderbar to have been set up task :config do - $LOAD_PATH.unshift '/srv/whimsy/lib' + $LOAD_PATH.unshift 'lib' -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@whimsical.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org