codemirror_sync: Use reset and checkout instead of restore (#9396)

The git version we are using for CI is too old.

Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
This commit is contained in:
Julien Pivotto 2021-09-25 12:38:57 +02:00 committed by GitHub
parent 1681a8d539
commit 0de0e1ee0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -107,13 +107,13 @@ process_repo() {
git add .
for excluded_dir in ${excluded_dirs}; do
git restore --staged "${excluded_dir}/*"
git restore "${excluded_dir}/*"
git reset -- "${excluded_dir}/*"
git checkout -- "${excluded_dir}/*"
done
for excluded_file in ${excluded_files}; do
git restore --staged "${excluded_file}"
git restore "${excluded_file}"
git reset -- "${excluded_file}"
git checkout -- "${excluded_file}"
done
if [[ -n "$(git status --porcelain)" ]]; then