NeuroDesk/neurocommand

neurocommand doesn't update the menu on play / lab

Closed this issue · 7 comments

The update runs without errors, but new menu entries are not added on the jupyter instances. It works in docker and nectar vdi though.

Any ideas what that could be?

Interesting, Its supposed to update on desktop startup. The play instance i opened is up to date with 2 days ago, which is odd
Edit: No wait, the commit timestamps are just odd.

I'll have a look

image

Is this the latest container?

Yes the latest afni container was the one I tested it with

Ahh - the desktop updates on restart but not when clicking update in the menu

does this require a reload of the menu and should this be included in the update script?

I think I found the problem. The update script doesn't pull the github repository:

changing

#!/usr/bin/env bash
 cd /neurocommand/local/neurocommand; bash build.sh; read -p "Press enter to close this window ..."

to

#!/usr/bin/env bash
 cd /neurocommand/local/neurocommand; git pull; bash build.sh; read -p "Press enter to close this window ..."

seems to fix the problem

attempted to fix here: 592205c