Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6ce7914

Browse files
committed
update uri
1 parent 42c4d6e commit 6ce7914

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444
if: runner.os == 'Windows'
4545
shell: pwsh
4646
run: |
47-
Invoke-WebRequest -Uri https://aka.ms/vs/17/release/vs_buildtools.exe -OutFile vs_buildtools.exe
48-
./vs_buildtools.exe --quiet --wait --norestart --add Microsoft.VisualStudio.Workload.VCTools --includeRecommended
47+
Invoke-WebRequest -Uri https://aka.ms/vs/18/insiders/vs_Community.exe -OutFile vs_Community.exe
48+
./vs_Community.exe --quiet --wait --norestart --add Microsoft.VisualStudio.Workload.VCTools --includeRecommended
4949
- name: Install dependencies
5050
env:
5151
PYTHON: ${{env.pythonLocation}}/bin/python3

.husky/commit-msg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
1+
# #!/usr/bin/env sh
2+
# . "$(dirname -- "$0")/_/husky.sh"
33

4-
[ -n "$CI" ] && exit 0
4+
# [ -n "$CI" ] && exit 0
55

6-
npx --no -- commitlint --edit "$1"
6+
# npx --no -- commitlint --edit "$1"

.husky/pre-commit

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
1+
# #!/usr/bin/env sh
2+
# . "$(dirname -- "$0")/_/husky.sh"
33

4-
[ -n "$CI" ] && exit 0
5-
if [ "$LINT_STAGED" = "0" ]; then
6-
echo "lint-staged disabled via LINT_STAGED env var"
7-
exit 0
8-
fi
4+
# [ -n "$CI" ] && exit 0
5+
# if [ "$LINT_STAGED" = "0" ]; then
6+
# echo "lint-staged disabled via LINT_STAGED env var"
7+
# exit 0
8+
# fi
99

10-
npx --no lint-staged
10+
# npx --no lint-staged

0 commit comments

Comments
 (0)