From 35d7a97de8f4a676e8869ffdfdd9e338f2b083a0 Mon Sep 17 00:00:00 2001 From: Luxoruus <64335628+Luxoruus@users.noreply.github.com> Date: Fri, 21 Jul 2023 11:25:32 +0100 Subject: [PATCH] Fixing last commit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0ed788c..d65dc95 100644 --- a/README.md +++ b/README.md @@ -319,7 +319,7 @@ New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShell -Value "$env: ``` 3. Set `tar_dereference` and `rm` variable to `true` in the YAML file 4. Avoid putting the `port` value through a variable -5. Convert the target path to a bash path: +5. Convert the target path to a Unix path: ```diff - name: Copy to Windows uses: appleboy/scp-action@v0.1.4 @@ -330,7 +330,7 @@ New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShell -Value "$env: port: 22 source: 'your_source_path' - target: 'C:\path\to\target' -+ target: 'C:/path/to/target' ++ target: '/c/path/to/target/' + tar_dereference: true + rm: true ```