Skip to content

Commit fbf4d3b

Browse files
committed
Fix missing chmod commands in Windows sync test.
1 parent 23489ee commit fbf4d3b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/operations/files.sync/sync_delete_windows.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,19 @@
4444
},
4545
"commands": [
4646
"mkdir -p /home/somedir",
47+
"chmod 755 /home/somedir",
4748
"mkdir -p /home/somedir/underthat",
49+
"chmod 755 /home/somedir/underthat",
4850
["upload", "\\somedir\\somefile.txt", "/home/somedir/somefile.txt"],
51+
"chmod 644 /home/somedir/somefile.txt",
4952
["upload", "\\somedir\\anotherfile.txt", "/home/somedir/anotherfile.txt"],
53+
"chmod 644 /home/somedir/anotherfile.txt",
5054
[
5155
"upload",
5256
"\\somedir\\underthat\\yet-another-file.txt",
5357
"/home/somedir/underthat/yet-another-file.txt"
5458
],
59+
"chmod 644 /home/somedir/underthat/yet-another-file.txt",
5560
"rm -f /home/somedir/deleteme.txt"
5661
],
5762
"idempotent": false

0 commit comments

Comments
 (0)