Skip to content

Commit

Permalink
fix: linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
scolladon committed Jul 24, 2023
1 parent 1c756e9 commit 44e3e1d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# These are supported funding model platforms

---
github: [scolladon]
2 changes: 1 addition & 1 deletion .github/workflows/on-main-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
yarn test:e2e
perf:
needs: build
needs: prepare-release
runs-on: ubuntu-latest
if: needs.prepare-release.outputs.release_created == 'false'
steps:
Expand Down
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
nodeLinker: node-modules

npmPublishRegistry: "https://registry.npmjs.org/"
Expand Down
6 changes: 3 additions & 3 deletions tooling/incrementApiVersion.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

filename=`find src/metadata -type f -name "v*.json" | sort | tail -1`
version=`echo "$filename" | tr -d -c 0-9`
filename=$(find src/metadata -type f -name "v*.json" | sort | tail -1)
version=$(echo "$filename" | tr -d -c 0-9)
((version++))
targetname="src/metadata/v${version}.json"
\cp "$filename" "$targetname"
\cp "$filename" "$targetname"

0 comments on commit 44e3e1d

Please sign in to comment.