-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Description fix git lfs migrate Fixes #`Issue Number` _or_ Fixes `Issue URL` ## Automation /ok-to-test tags="" ### 🔍 Cypress test results ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No
- Loading branch information
1 parent
e484705
commit 1274da2
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -206,7 +206,7 @@ jobs: | |
git config --global user.name "$gituser" | ||
git clone https://[email protected]/appsmithorg/cibuildcache.git | ||
git lfs install | ||
git lfs migrate import --everything | ||
git lfs migrate import --everything --yes | ||
if [ "$reponame" = "appsmith" ]; then export repodir="CE"; fi | ||
if [ "$reponame" = "appsmith-ee" ]; then export repodir="EE"; fi | ||
cd cibuildcache/$repodir/release/client | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -338,7 +338,7 @@ jobs: | |
git config --global user.name "$gituser" | ||
git clone https://[email protected]/appsmithorg/cibuildcache.git | ||
git lfs install | ||
git lfs migrate import --everything | ||
git lfs migrate import --everything --yes | ||
if [ "$reponame" = "appsmith" ]; then export repodir="CE"; fi | ||
if [ "$reponame" = "appsmith-ee" ]; then export repodir="EE"; fi | ||
cd cibuildcache/$repodir/release/server | ||
|