Skip to content

Commit 32ddbdb

Browse files
committed
fix(cd): fixing incorrect regex in cd
1 parent 8accbbd commit 32ddbdb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/igniteui-react-examples-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
shell: pwsh
8787
run: |
8888
Get-ChildItem -Include "*.tsx","*.ts" -Recurse | `
89-
ForEach { (Get-Content $_.PSPath | ForEach { ($_ -replace '(from|import)\s?[''"](igniteui-(react|dockmanager).*)[''")', '$1 "@infragistics/$2"') }) | `
89+
ForEach { (Get-Content $_.PSPath | ForEach { ($_ -replace '(from|import)\s?[''"](igniteui-(react|dockmanager).*)[''"]', '$1 "@infragistics/$2"') }) | `
9090
Set-Content $_.PSPath }
9191
9292
- name: npm run build

0 commit comments

Comments
 (0)