neurocommand doesn't update the menu on play / lab
Closed this issue · 7 comments
stebo85 commented
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?
aswinnarayanan commented
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
aswinnarayanan commented
stebo85 commented
Yes the latest afni container was the one I tested it with
stebo85 commented
Ahh - the desktop updates on restart but not when clicking update in the menu
stebo85 commented
does this require a reload of the menu and should this be included in the update script?
stebo85 commented
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