Skip to content

Commit 568bc96

Browse files
committed
Adjusted debug statements
1 parent c0f4ad5 commit 568bc96

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/build_test_push.yaml

+6-7
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,12 @@ jobs:
3232
- name: Download RonDB
3333
run: |
3434
set -x
35-
wget $RONDB_TARBALL_URI -O ./temp_tarball.tar.gz
36-
(set +e; ls -la ./**)
37-
(set +e; ls -la /tmp/**)
38-
tar xfz ./temp_tarball.tar.gz -C $RONDB_PATH --strip-components=1
39-
(set +e; ls -la ./**)
40-
(set +e; ls -la /tmp/**)
41-
rm ./temp_tarball.tar.gz
35+
wget $RONDB_TARBALL_URI -O /tmp/temp_tarball.tar.gz
36+
(set +e; ls -la /tmp)
37+
tar xfz /tmp/temp_tarball.tar.gz -C $RONDB_PATH --strip-components=1
38+
(set +e; ls -la /tmp)
39+
(set +e; ls -la $RONDB_PATH)
40+
rm /tmp/temp_tarball.tar.gz
4241
4342
- name: Build and Run RonDB Service
4443
run: |

0 commit comments

Comments
 (0)