Skip to content

Commit

Permalink
ci: qt 6.2 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Jan 12, 2025
1 parent 7d8c43f commit eb23e77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
force_push_tag: true

- name: Build
run:
run: |
export GITTAGNOV=$(echo "$GITHUB_REF" | sed "s/.*\///;s/^v//")
./ci/tarball.build.sh
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ static void makeValidator(QLineEdit* widg, QString rx)
auto val = new QRegularExpressionValidator;
if(rx.startsWith("/^"))
{
rx.removeAt(0);
rx.removeAt(0);
rx.remove(0, 2);
}
if(rx.endsWith("$/"))
{
Expand Down

0 comments on commit eb23e77

Please sign in to comment.