Skip to content

Commit

Permalink
fix testing problem
Browse files Browse the repository at this point in the history
  • Loading branch information
skywalkerX69 committed Aug 17, 2023
1 parent 7d4206c commit 4cb1b10
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-build-mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Run db meta script
run: |
script_path=./packages/watchmen-storage-mysql/meta-scripts
for version in `ls ${script_path}`
for version in `ls -v ${script_path}`
do
if [ -d ${script_path}/$version ];then
for file in ${script_path}/$version/*
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Run db data script
run: |
script_path=./packages/watchmen-storage-mysql/data-scripts
for version in `ls ${script_path}`
for version in `ls -v ${script_path}`
do
if [ -d ${script_path}/$version ];then
for file in ${script_path}/$version/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-build-mssql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Run db meta script
run: |
script_path=./packages/watchmen-storage-mssql/meta-scripts
for version in `ls ${script_path}`
for version in `ls -v ${script_path}`
do
if [ -d ${script_path}/$version ];then
for file in ${script_path}/$version/*
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Run db data script
run: |
script_path=./packages/watchmen-storage-mssql/data-scripts
for version in `ls ${script_path}`
for version in `ls -v ${script_path}`
do
if [ -d ${script_path}/$version ];then
for file in ${script_path}/$version/*
Expand Down

0 comments on commit 4cb1b10

Please sign in to comment.