We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfb72d7 commit 9bc2263Copy full SHA for 9bc2263
2 files changed
.github/workflows/sync_cling.yml
@@ -4,6 +4,7 @@ on:
4
pull_request:
5
paths:
6
- 'interpreter/cling/**'
7
+ - '.github/workflows/utilities/sync_cling.py'
8
jobs:
9
sync-cling-history:
10
if: github.repository_owner == 'devajithvs'
.github/workflows/utilities/sync_cling.py
@@ -177,6 +177,10 @@ def principal():
177
178
applyPatches(patches)
179
180
+ # Remove text-input directory, revert this after the run.
181
+ execCommand(f'git rm lib/UserInterface/textinput -r', CLING_REPO_DIR_NAME)
182
+ execCommand(f'git commit -m "Remove `textinput` directory"', CLING_REPO_DIR_NAME)
183
+
184
syncTagAndPush(rootSyncTag, rootHashes[0])
185
186
if __name__ == '__main__':
0 commit comments