Skip to content
This repository has been archived by the owner on Aug 27, 2022. It is now read-only.

Update Photobooth

Andreas Blaesius edited this page Oct 10, 2019 · 12 revisions

Updating Photobooth on Raspbian

Updating from v1.9.x or older version

Updating from an old version to v2.x it's recommend to make a clean install.

Updating from v2.x to a newer version

Make sure you have no local changes, else make sure to commit them (git add --all && git commit -a -m "my local changes") and keep them in a backup branch you can return to later if needed (git checkout -b mybackupbranch).

Run below commands in your terminal:

cd /var/www/
sudo -u www-data -s
cd /var/www/html
git fetch origin
git checkout origin/master
git submodule update --init
yarn install
yarn build
exit
Clone this wiki locally