mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-21 07:43:54 +08:00
9 lines
149 B
Bash
9 lines
149 B
Bash
|
|
#!/bin/bash -e
|
||
|
|
|
||
|
|
# workaround for a git lfs bug when pushing
|
||
|
|
# to PR branches that don't have lfs enabled
|
||
|
|
|
||
|
|
git lfs uninstall
|
||
|
|
git push
|
||
|
|
git lfs install
|