nextcloud / files_photospheres

Nextcloud app for viewing Google PhotoSphere 360° images (panorama-images)
GNU Affero General Public License v3.0
29 stars 2 forks source link

Fix Node build #145

Closed R0Wi closed 3 months ago

R0Wi commented 3 months ago

The backport to stable28 failed:

The process '/usr/bin/git' failed with exit code 1

To backport manually, run these commands in your terminal:

# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-stable28 stable28
# Navigate to the new working tree
cd .worktrees/backport-stable28
# Create a new branch
git switch --create backport-145-to-stable28
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick ---mainline 1 e454ba1fae2dca3ee97077f81f90673d06fe1eef
# Push it to GitHub
git push --set-upstream origin backport-145-to-stable28
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-stable28

Then, create a pull request where the base branch is stable28 and the compare/head branch is backport-145-to-stable28.