Skip to content

Commit c7b318c

Browse files
committed
fix install shell
1 parent 1714ec5 commit c7b318c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/debug-install-shell.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ jobs:
4646
- name: Test install with install-dir
4747
run: |
4848
chmod +x install.sh
49-
./install.sh --install-dir "/.snm-demo"
50-
if [ ! -d /.snm-demo ]; then
51-
echo "Error: /.snm-demo directory not found!"
49+
./install.sh --install-dir "./.snm-demo"
50+
if [ ! -d "./.snm-demo" ]; then
51+
echo "Error: ./.snm-demo directory not found!"
5252
exit 1
5353
fi
54-
ls -l /.snm-demo
54+
ls -l ./.snm-demo

0 commit comments

Comments
 (0)